All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blade.jdbc.Const Maven / Gradle / Ivy

The newest version!
package com.blade.jdbc;

/**
 * Blade JDBC Const
 *
 * @author biezhi
 * @date 2017/11/10
 */
public interface Const {

    String SPACE      = " ";
    String SQL_AND    = "AND";
    String SQL_OR     = "OR";
    String SQL_WHERE  = "WHERE";
    String SQL_IN     = "IN";
    String SQL_INSERT = "INSERT INTO";

    String SQL_QM             = "?";
    String EXECUTE_SQL_PREFIX = "⬢ Execute SQL";
    String PARAMETER_PREFIX   = "⬢ Parameters ";

    char IN_START = '(';
    char IN_END   = ')';

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy