| Modifier and Type | Method and Description |
|---|---|
static DbType |
DbType.of(String name) |
static DbType |
DbType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DbType[] |
DbType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static long |
DbType.of(DbType... types) |
| Modifier and Type | Method and Description |
|---|---|
DbType |
StatFilter.getDbType() |
| Modifier and Type | Method and Description |
|---|---|
String |
StatFilter.mergeSql(String sql,
DbType dbType) |
void |
StatFilter.setDbType(DbType dbType) |
| Modifier and Type | Method and Description |
|---|---|
void |
DruidAbstractDataSource.setDbType(DbType dbType) |
| Constructor and Description |
|---|
OceanBaseValidConnectionChecker(DbType dbType) |
| Modifier and Type | Method and Description |
|---|---|
static void |
SQLUtils.acceptAggregateFunction(String sql,
DbType dbType,
Consumer<SQLAggregateExpr> consumer,
Predicate<SQLAggregateExpr> filter) |
static void |
SQLUtils.acceptBinaryOpExpr(String sql,
DbType dbType,
Consumer<SQLBinaryOpExpr> consumer,
Predicate<SQLBinaryOpExpr> filter) |
static void |
SQLUtils.acceptBinaryOpExprGroup(String sql,
DbType dbType,
Consumer<SQLBinaryOpExprGroup> consumer,
Predicate<SQLBinaryOpExprGroup> filter) |
static void |
SQLUtils.acceptBooleanOr(String sql,
DbType dbType,
Consumer<SQLBinaryOpExprGroup> consumer) |
static void |
SQLUtils.acceptFunction(String sql,
DbType dbType,
Consumer<SQLMethodInvokeExpr> consumer,
Predicate<SQLMethodInvokeExpr> filter) |
static void |
SQLUtils.acceptInsertInto(String sql,
DbType dbType,
Consumer<SQLInsertInto> consumer,
Predicate<SQLInsertInto> filter) |
static void |
SQLUtils.acceptSelectQueryBlock(String sql,
DbType dbType,
Consumer<SQLSelectQueryBlock> consumer,
Predicate<SQLSelectQueryBlock> filter) |
static String |
SQLUtils.addCondition(String sql,
String condition,
DbType dbType) |
static String |
SQLUtils.addCondition(String sql,
String condition,
SQLBinaryOperator op,
boolean left,
DbType dbType) |
static String |
SQLUtils.addSelectItem(String selectSql,
String expr,
String alias,
boolean first,
DbType dbType) |
static String |
SQLUtils.addSelectItem(String selectSql,
String expr,
String alias,
DbType dbType) |
static String |
SQLUtils.buildToDate(String columnName,
String tableAlias,
String pattern,
DbType dbType) |
static Object[] |
SQLUtils.clearLimit(String query,
DbType dbType) |
static String |
PagerUtils.count(String sql,
DbType dbType) |
static SQLASTOutputVisitor |
SQLUtils.createFormatOutputVisitor(Appendable out,
List<SQLStatement> statementList,
DbType dbType) |
static SQLASTOutputVisitor |
SQLUtils.createOutputVisitor(Appendable out,
DbType dbType) |
static SchemaStatVisitor |
SQLUtils.createSchemaStatVisitor(DbType dbType) |
static SchemaStatVisitor |
SQLUtils.createSchemaStatVisitor(List<SQLStatement> statementList,
DbType dbType)
Deprecated.
|
static SchemaStatVisitor |
SQLUtils.createSchemaStatVisitor(SchemaRepository repository,
DbType dbType) |
static String |
SQLUtils.forcedNormalize(String name,
DbType dbType) |
static String |
SQLUtils.format(String sql,
DbType dbType) |
static String |
SQLUtils.format(String sql,
DbType dbType,
List<Object> parameters) |
static String |
SQLUtils.format(String sql,
DbType dbType,
List<Object> parameters,
SQLUtils.FormatOption option) |
static String |
SQLUtils.format(String sql,
DbType dbType,
List<Object> parameters,
SQLUtils.FormatOption option,
SQLParserFeature[] features) |
static String |
SQLUtils.format(String sql,
DbType dbType,
SQLUtils.FormatOption option) |
static SQLLimit |
SQLUtils.getLimit(SQLStatement statement,
DbType dbType) |
static int |
PagerUtils.getLimit(String sql,
DbType dbType) |
static SQLLimit |
SQLUtils.getLimit(String query,
DbType dbType) |
static long |
SQLUtils.hash(String sql,
DbType dbType) |
static boolean |
PagerUtils.hasUnorderedLimit(String sql,
DbType dbType) |
static String |
PagerUtils.limit(SQLSelect select,
DbType dbType,
int offset,
int count) |
static boolean |
PagerUtils.limit(SQLSelect select,
DbType dbType,
int offset,
int count,
boolean check) |
static String |
PagerUtils.limit(String sql,
DbType dbType,
int offset,
int count) |
static String |
PagerUtils.limit(String sql,
DbType dbType,
int offset,
int count,
boolean check) |
static String |
SQLUtils.normalize(String name,
DbType dbType) |
static SQLStatement |
SQLUtils.parseSingleStatement(String sql,
DbType dbType,
boolean keepComments) |
static SQLStatement |
SQLUtils.parseSingleStatement(String sql,
DbType dbType,
SQLParserFeature... features) |
static List<SQLStatement> |
SQLUtils.parseStatements(String sql,
DbType dbType) |
static List<SQLStatement> |
SQLUtils.parseStatements(String sql,
DbType dbType,
boolean keepComments) |
static List<SQLStatement> |
SQLUtils.parseStatements(String sql,
DbType dbType,
SQLParserFeature... features) |
static String |
SQLUtils.refactor(String sql,
DbType dbType,
Map<String,String> tableMapping) |
static String |
SQLUtils.sort(String sql,
DbType dbType)
重新排序建表语句,解决建表语句的依赖关系
|
static List<SQLInsertStatement> |
SQLUtils.splitInsertValues(DbType dbType,
String insertSql,
int size) |
static SQLSelectOrderByItem |
SQLUtils.toOrderByItem(String sql,
DbType dbType) |
static SQLSelectItem |
SQLUtils.toSelectItem(String sql,
DbType dbType) |
static SQLExpr |
SQLUtils.toSQLExpr(String sql,
DbType dbType) |
static String |
SQLUtils.toSQLString(List<SQLStatement> statementList,
DbType dbType) |
static String |
SQLUtils.toSQLString(List<SQLStatement> statementList,
DbType dbType,
List<Object> parameters) |
static String |
SQLUtils.toSQLString(List<SQLStatement> statementList,
DbType dbType,
List<Object> parameters,
SQLUtils.FormatOption option) |
static String |
SQLUtils.toSQLString(List<SQLStatement> statementList,
DbType dbType,
List<Object> parameters,
SQLUtils.FormatOption option,
Map<String,String> tableMapping) |
static String |
SQLUtils.toSQLString(List<SQLStatement> statementList,
DbType dbType,
SQLUtils.FormatOption option) |
static String |
SQLUtils.toSQLString(SQLObject sqlObject,
DbType dbType) |
static String |
SQLUtils.toSQLString(SQLObject sqlObject,
DbType dbType,
SQLUtils.FormatOption option) |
static String |
SQLUtils.toSQLString(SQLObject sqlObject,
DbType dbType,
SQLUtils.FormatOption option,
VisitorFeature... features) |
static List<SQLStatement> |
SQLUtils.toStatementList(String sql,
DbType dbType) |
static SQLUpdateSetItem |
SQLUtils.toUpdateSetItem(String sql,
DbType dbType) |
| Modifier and Type | Method and Description |
|---|---|
DbType |
SQLStatement.getDbType() |
DbType |
SQLStatementImpl.getDbType() |
DbType |
SQLDataType.getDbType() |
DbType |
SQLRowDataType.getDbType() |
DbType |
SQLTableDataType.getDbType() |
DbType |
SQLArrayDataType.getDbType() |
DbType |
SQLDbTypedObject.getDbType() |
DbType |
SQLDataTypeImpl.getDbType() |
DbType |
SQLStructDataType.getDbType() |
DbType |
SQLMapDataType.getDbType() |
| Modifier and Type | Method and Description |
|---|---|
void |
SQLStatementImpl.setDbType(DbType dbType) |
void |
SQLDataType.setDbType(DbType dbType) |
void |
SQLRowDataType.setDbType(DbType dbType) |
void |
SQLTableDataType.setDbType(DbType dbType) |
void |
SQLArrayDataType.setDbType(DbType dbType) |
void |
SQLDataTypeImpl.setDbType(DbType dbType) |
void |
SQLStructDataType.setDbType(DbType dbType) |
void |
SQLMapDataType.setDbType(DbType dbType) |
| Constructor and Description |
|---|
SQLArrayDataType(SQLDataType componentType,
DbType dbType) |
SQLMapDataType(SQLDataType keyType,
SQLDataType valueType,
DbType dbType) |
SQLRowDataType(DbType dbType) |
SQLStatementImpl(DbType dbType) |
SQLStructDataType(DbType dbType) |
SQLTableDataType(DbType dbType) |
| Modifier and Type | Method and Description |
|---|---|
DbType |
SQLBinaryOpExpr.getDbType() |
| Modifier and Type | Method and Description |
|---|---|
static SQLDataType |
SQLExprUtils.createDataTypeFromJdbc(DbType dbType,
int jdbType,
Integer precision,
Integer scale) |
static boolean |
SQLDateExpr.isSupport(DbType dbType) |
static boolean |
SQLDateTimeExpr.isSupport(DbType dbType) |
static boolean |
SQLTimeExpr.isSupport(DbType dbType) |
static String |
SQLExprUtils.quote(String str,
DbType dbType,
char quote) |
void |
SQLBinaryOpExpr.setDbType(DbType dbType) |
| Constructor and Description |
|---|
SQLBinaryOpExpr(DbType dbType) |
SQLBinaryOpExpr(SQLExpr left,
SQLBinaryOperator operator,
SQLExpr right,
DbType dbType) |
SQLBinaryOpExprGroup(SQLBinaryOperator operator,
DbType dbType) |
| Modifier and Type | Method and Description |
|---|---|
DbType |
SQLSelect.getDbType() |
DbType |
SQLInsertStatement.getDbType() |
DbType |
SQLUnionQuery.getDbType() |
DbType |
SQLSelectQueryBlock.getDbType() |
DbType |
SQLColumnDefinition.getDbType() |
DbType |
SQLConstraintImpl.getDbType() |
| Modifier and Type | Method and Description |
|---|---|
void |
SQLInsertStatement.setDbType(DbType dbType) |
void |
SQLUnionQuery.setDbType(DbType dbType) |
void |
SQLSelectQueryBlock.setDbType(DbType dbType) |
void |
SQLColumnDefinition.setDbType(DbType dbType) |
void |
SQLConstraintImpl.setDbType(DbType dbType) |
| Modifier and Type | Method and Description |
|---|---|
static SQLDeleteBuilder |
SQLBuilderFactory.createDeleteBuilder(DbType dbType) |
static SQLDeleteBuilder |
SQLBuilderFactory.createDeleteBuilder(String sql,
DbType dbType) |
static SQLSelectBuilder |
SQLBuilderFactory.createSelectSQLBuilder(DbType dbType) |
static SQLSelectBuilder |
SQLBuilderFactory.createSelectSQLBuilder(String sql,
DbType dbType) |
static SQLUpdateBuilder |
SQLBuilderFactory.createUpdateBuilder(DbType dbType) |
static SQLUpdateBuilder |
SQLBuilderFactory.createUpdateBuilder(String sql,
DbType dbType) |
| Constructor and Description |
|---|
SQLFunctionBuilder(DbType dbType) |
| Modifier and Type | Method and Description |
|---|---|
static SQLExpr |
SQLBuilderImpl.toSQLExpr(Object obj,
DbType dbType) |
| Constructor and Description |
|---|
SQLDeleteBuilderImpl(DbType dbType) |
SQLDeleteBuilderImpl(SQLDeleteStatement stmt,
DbType dbType) |
SQLDeleteBuilderImpl(String sql,
DbType dbType) |
SQLSelectBuilderImpl(DbType dbType) |
SQLSelectBuilderImpl(SQLSelectStatement stmt,
DbType dbType) |
SQLSelectBuilderImpl(String sql,
DbType dbType) |
SQLUpdateBuilderImpl(DbType dbType) |
SQLUpdateBuilderImpl(SQLUpdateStatement stmt,
DbType dbType) |
SQLUpdateBuilderImpl(String sql,
DbType dbType) |
| Constructor and Description |
|---|
AdsOutputVisitor(Appendable appender,
DbType dbType) |
| Constructor and Description |
|---|
AntsparkOutputVisitor(Appendable appender,
DbType dbType) |
| Constructor and Description |
|---|
BlinkOutputVisitor(Appendable appender,
DbType dbType) |
| Constructor and Description |
|---|
ClickhouseOutputVisitor(Appendable appender,
DbType dbType) |
| Constructor and Description |
|---|
H2OutputVisitor(Appendable appender,
DbType dbType) |
| Constructor and Description |
|---|
HiveCreateTableStatement(DbType dbType) |
| Constructor and Description |
|---|
HiveOutputVisitor(Appendable appender,
DbType dbType) |
HiveSchemaStatVisitor(DbType dbType) |
| Constructor and Description |
|---|
MySqlExplainStatement(DbType dbType) |
| Modifier and Type | Method and Description |
|---|---|
DbType |
MySqlSchemaStatVisitor.getDbType() |
| Modifier and Type | Method and Description |
|---|---|
DbType |
PGSchemaStatVisitor.getDbType() |
| Modifier and Type | Method and Description |
|---|---|
DbType |
SQLParser.getDbType() |
DbType |
Lexer.getDbType() |
| Modifier and Type | Method and Description |
|---|---|
static String |
SQLParserUtils.addBackQuote(String sql,
DbType dbType) |
static boolean |
SQLParserUtils.containsAny(String sql,
DbType dbType,
Token... tokens) |
static boolean |
SQLParserUtils.containsAny(String sql,
DbType dbType,
Token token) |
static boolean |
SQLParserUtils.containsAny(String sql,
DbType dbType,
Token token1,
Token token2) |
static boolean |
SQLParserUtils.containsAny(String sql,
DbType dbType,
Token token1,
Token token2,
Token token3) |
static SQLExprParser |
SQLParserUtils.createExprParser(String sql,
DbType dbType,
SQLParserFeature... features) |
static Lexer |
SQLParserUtils.createLexer(String sql,
DbType dbType) |
static Lexer |
SQLParserUtils.createLexer(String sql,
DbType dbType,
SQLParserFeature... features) |
static SQLSelectQueryBlock |
SQLParserUtils.createSelectQueryBlock(DbType dbType) |
static SQLStatementParser |
SQLParserUtils.createSQLStatementParser(String sql,
DbType dbType) |
static SQLStatementParser |
SQLParserUtils.createSQLStatementParser(String sql,
DbType dbType,
boolean keepComments) |
static SQLStatementParser |
SQLParserUtils.createSQLStatementParser(String sql,
DbType dbType,
SQLParserFeature... features) |
static Object |
SQLParserUtils.getSimpleSelectValue(String sql,
DbType dbType) |
static Object |
SQLParserUtils.getSimpleSelectValue(String sql,
DbType dbType,
SQLParserUtils.SimpleValueEvalHandler handler) |
static SQLType |
SQLParserUtils.getSQLType(String sql,
DbType dbType) |
static SQLType |
SQLParserUtils.getSQLTypeV2(String sql,
DbType dbType) |
static List<String> |
SQLParserUtils.getTables(String sql,
DbType dbType) |
static String |
Lexer.parameterize(String sql,
DbType dbType) |
static String |
SQLParserUtils.removeComment(String sql,
DbType dbType) |
static String |
SQLParserUtils.removeLeftComment(String sql,
DbType dbType) |
static String |
SQLParserUtils.replaceBackQuote(String sql,
DbType dbType) |
static List<String> |
SQLParserUtils.splitAndRemoveComment(String sql,
DbType dbType) |
static boolean |
SQLParserUtils.startsWithHint(String sql,
DbType dbType) |
| Constructor and Description |
|---|
Lexer(String input,
Lexer.CommentHandler commentHandler,
DbType dbType) |
SQLExprParser(Lexer lexer,
DbType dbType) |
SQLExprParser(String sql,
DbType dbType,
SQLParserFeature... features) |
SQLParser(Lexer lexer,
DbType dbType) |
SQLParser(String sql,
DbType dbType,
SQLParserFeature... features) |
SQLSelectListCache(DbType dbType) |
SQLStatementParser(String sql,
DbType dbType) |
| Modifier and Type | Method and Description |
|---|---|
DbType |
SchemaRepository.getDbType() |
| Modifier and Type | Method and Description |
|---|---|
SchemaObject |
SchemaRepository.acceptDDL(String ddl,
DbType dbType) |
| Constructor and Description |
|---|
SchemaRepository(DbType dbType) |
SchemaRepository(DbType dbType,
DbType schemaDbType) |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
SemanticCheck.check(String sql,
DbType dbType) |
| Modifier and Type | Method and Description |
|---|---|
DbType |
SQLTranform.getSourceDbType() |
DbType |
SQLTranformImpl.getSourceDbType() |
DbType |
SQLTranform.getTargetDbType() |
DbType |
SQLTranformImpl.getTargetDbType() |
| Modifier and Type | Method and Description |
|---|---|
static long |
SQLUnifiedUtils.unifyHash(String sql,
DbType type) |
static String |
SQLUnifiedUtils.unifySQL(String sql,
DbType type) |
| Constructor and Description |
|---|
SQLRefactorVisitor(DbType dbType) |
| Modifier and Type | Method and Description |
|---|---|
DbType |
ParameterizedVisitor.getDbType() |
DbType |
SQLASTOutputVisitor.getDbType() |
DbType |
SQLASTParameterizedVisitor.getDbType() |
DbType |
SchemaStatVisitor.getDbType() |
| Modifier and Type | Method and Description |
|---|---|
static void |
SQLDataTypeValidator.check(List<SQLStatement> stmtList,
DbType dbType) |
static SQLEvalVisitor |
SQLEvalVisitorUtils.createEvalVisitor(DbType dbType) |
static ExportParameterVisitor |
ExportParameterVisitorUtils.createExportParameterVisitor(Appendable out,
DbType dbType) |
static ParameterizedVisitor |
ParameterizedOutputVisitorUtils.createParameterizedOutputVisitor(Appendable out,
DbType dbType) |
static Object |
SQLEvalVisitorUtils.eval(DbType dbType,
SQLObject sqlObject,
List<Object> parameters) |
static Object |
SQLEvalVisitorUtils.eval(DbType dbType,
SQLObject sqlObject,
List<Object> parameters,
boolean throwError) |
static Object |
SQLEvalVisitorUtils.eval(DbType dbType,
SQLObject sqlObject,
Object... parameters) |
static Object |
SQLEvalVisitorUtils.evalExpr(DbType dbType,
String expr,
List<Object> parameters) |
static Object |
SQLEvalVisitorUtils.evalExpr(DbType dbType,
String expr,
Object... parameters) |
static SQLDataTypeValidator |
SQLDataTypeValidator.of(DbType dbType) |
static String |
ParameterizedOutputVisitorUtils.parameterize(List<SQLStatement> statementList,
DbType dbType) |
static String |
ParameterizedOutputVisitorUtils.parameterize(SQLStatement stmt,
DbType dbType) |
static String |
ParameterizedOutputVisitorUtils.parameterize(String sql,
DbType dbType) |
static String |
ParameterizedOutputVisitorUtils.parameterize(String sql,
DbType dbType,
List<Object> outParameters) |
static String |
ParameterizedOutputVisitorUtils.parameterize(String sql,
DbType dbType,
List<Object> outParameters,
VisitorFeature... features) |
static String |
ParameterizedOutputVisitorUtils.parameterize(String sql,
DbType dbType,
SQLSelectListCache selectListCache) |
static String |
ParameterizedOutputVisitorUtils.parameterize(String sql,
DbType dbType,
SQLSelectListCache selectListCache,
List<Object> outParameters,
SQLParserFeature[] features,
VisitorFeature... visitorFeatures) |
static String |
ParameterizedOutputVisitorUtils.parameterize(String sql,
DbType dbType,
SQLSelectListCache selectListCache,
List<Object> outParameters,
VisitorFeature... visitorFeatures) |
static String |
ParameterizedOutputVisitorUtils.parameterize(String sql,
DbType dbType,
VisitorFeature... features) |
static String |
ParameterizedOutputVisitorUtils.parameterizeForTDDL(String sql,
DbType dbType,
List<Object> outParameters,
VisitorFeature... features) |
static String |
ParameterizedOutputVisitorUtils.parameterizeForTDDL(String sql,
DbType dbType,
SQLSelectListCache selectListCache,
List<Object> outParameters,
VisitorFeature... visitorFeatures) |
static long |
ParameterizedOutputVisitorUtils.parameterizeHash(String sql,
DbType dbType,
List<Object> outParameters) |
static long |
ParameterizedOutputVisitorUtils.parameterizeHash(String sql,
DbType dbType,
SQLSelectListCache selectListCache,
List<Object> outParameters) |
static long |
ParameterizedOutputVisitorUtils.parameterizeHash(String sql,
DbType dbType,
SQLSelectListCache selectListCache,
List<Object> outParameters,
VisitorFeature... visitorFeatures) |
static SQLStatement |
ParameterizedOutputVisitorUtils.parameterizeOf(String sql,
DbType dbType) |
static SQLStatement |
ParameterizedOutputVisitorUtils.parameterizeOf(String sql,
List<Object> outParameters,
DbType dbType) |
static String |
ParameterizedOutputVisitorUtils.restore(String sql,
DbType dbType,
List<Object> parameters) |
static String |
ParameterizedOutputVisitorUtils.restore(String sql,
DbType dbType,
Map<String,Object> parameters) |
| Constructor and Description |
|---|
SchemaStatVisitor(DbType dbType) |
SchemaStatVisitor(DbType dbType,
List<Object> parameters) |
SQLASTOutputVisitor(Appendable appender,
DbType dbType) |
SQLASTParameterizedVisitor(DbType dbType) |
SQLASTParameterizedVisitor(DbType dbType,
List<Object> parameters) |
SQLSubQueryGroupVisitor(DbType dbType) |
| Constructor and Description |
|---|
Column(String table,
String name,
DbType dbType) |
| Modifier and Type | Field and Description |
|---|---|
static DbType |
JdbcConstants.ALI_ORACLE |
static DbType |
JdbcConstants.ALIYUN_DRDS |
static DbType |
JdbcConstants.CLICKHOUSE |
static DbType |
JdbcConstants.DB2 |
static DbType |
JdbcConstants.DERBY |
static DbType |
JdbcConstants.DM |
static DbType |
JdbcConstants.ENTERPRISEDB |
static DbType |
JdbcConstants.GBASE |
static DbType |
JdbcConstants.GREENPLUM
GreenPlum
|
static DbType |
JdbcConstants.H2 |
static DbType |
JdbcConstants.HIVE |
static DbType |
JdbcConstants.HSQL |
static DbType |
JdbcConstants.INFORMIX |
static DbType |
JdbcConstants.JTDS |
static DbType |
JdbcConstants.KINGBASE |
static DbType |
JdbcConstants.MYSQL |
static DbType |
JdbcConstants.OCEANBASE |
static DbType |
JdbcConstants.OCEANBASE_ORACLE |
static DbType |
JdbcConstants.ODPS
阿里云odps
|
static DbType |
JdbcConstants.ORACLE |
static DbType |
JdbcConstants.OSCAR
oscar
|
static DbType |
JdbcConstants.POLARDB
Aliyun PolarDB
|
static DbType |
JdbcConstants.POSTGRESQL |
static DbType |
JdbcConstants.SQL_SERVER |
static DbType |
JdbcConstants.SYBASE |
static DbType |
JdbcConstants.TIDB |
static DbType |
JdbcConstants.TYDB |
static DbType |
JdbcConstants.XUGU |
| Modifier and Type | Method and Description |
|---|---|
static DbType |
JdbcUtils.getDbTypeRaw(String rawUrl,
String driverClassName) |
| Modifier and Type | Method and Description |
|---|---|
static String |
JdbcUtils.getCreateTableScript(Connection conn,
DbType dbType) |
static String |
JdbcUtils.getCreateTableScript(Connection conn,
DbType dbType,
boolean sorted,
boolean simplify) |
static boolean |
JdbcUtils.isMysqlDbType(DbType dbType) |
static boolean |
JdbcUtils.isOracleDbType(DbType dbType) |
static boolean |
JdbcUtils.isPgsqlDbType(DbType dbType) |
static boolean |
JdbcUtils.isSqlserverDbType(DbType dbType) |
static List<String> |
JdbcUtils.showTables(Connection conn,
DbType dbType) |
| Modifier and Type | Method and Description |
|---|---|
DbType |
WallVisitor.getDbType() |
DbType |
WallContext.getDbType() |
| Modifier and Type | Method and Description |
|---|---|
static WallContext |
WallContext.create(DbType dbType) |
static WallContext |
WallContext.createIfNotExists(DbType dbType) |
void |
WallFilter.setDbType(DbType dbType) |
| Constructor and Description |
|---|
WallContext(DbType dbType) |
WallProvider(WallConfig config,
DbType dbType) |
| Modifier and Type | Method and Description |
|---|---|
DbType |
MySqlWallVisitor.getDbType() |
DbType |
SQLServerWallVisitor.getDbType() |
DbType |
SQLiteWallVisitor.getDbType() |
DbType |
DB2WallVisitor.getDbType() |
DbType |
OracleWallVisitor.getDbType() |
DbType |
PGWallVisitor.getDbType() |
DbType |
ClickhouseWallVisitor.getDbType() |
| Modifier and Type | Method and Description |
|---|---|
static Object |
WallVisitorUtils.eval(WallVisitor wallVisitor,
DbType dbType,
SQLObject sqlObject,
List<Object> parameters) |
Copyright © 2013–2022 Alibaba Group. All rights reserved.