- buildAddRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
添加列
ALTER TABLE HR_USER ADD COLUMN UPT_TIME datetime CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP comment '修改时间' AFTER ID;
- buildAddRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
添加标签
ALTER TABLE HR_USER ADD TAG UPT_TIME datetime CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP comment '修改时间' AFTER ID;
- buildAddRunSQL(Index) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
添加索引
- buildAddRunSQL(Constraint) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
添加约束
- buildAlterRunSQL(Table) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
- buildAlterRunSQL(MasterTable) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
- buildAlterRunSQL(PartitionTable) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
- buildAlterRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改列 ALTER TABLE HR_USER CHANGE UPT_TIME UPT_TIME datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP comment '修改时间' AFTER ID;
- buildAlterRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改标签 ALTER TABLE HR_USER CHANGE UPT_TIME UPT_TIME datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP comment '修改时间' AFTER ID;
- buildAlterRunSQL(Index) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改索引
有可能生成多条SQL
- buildAlterRunSQL(Constraint) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改约束
有可能生成多条SQL
- buildChangeCommentRunSQL(Table) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
- buildChangeCommentRunSQL(MasterTable) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
- buildChangeCommentRunSQL(PartitionTable) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
- buildChangeCommentRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改备注
一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildChangeCommentRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改备注
一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildChangeDefaultRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改默认值
一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildChangeDefaultRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改默认值
一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildChangeNullableRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改非空限制
一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildChangeNullableRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改非空限制
一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildChangeTypeRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改数据类型
一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildChangeTypeRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改数据类型
一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildCreateCommentRunSQL(Table) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
添加表备注(表创建完成后调用,创建过程能添加备注的不需要实现)
- buildCreateRunSQL(Table) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
- buildCreateRunSQL(MasterTable) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
创建主表
- buildCreateRunSQL(PartitionTable) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
创建分区表
- buildDropRunSQL(Table) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
删除表
- buildDropRunSQL(MasterTable) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
- buildDropRunSQL(PartitionTable) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
- buildDropRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
删除列
ALTER TABLE HR_USER DROP COLUMN NAME;
- buildDropRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
删除标签
ALTER TABLE HR_USER DROP TAG NAME;
- buildDropRunSQL(Index) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
删除索引
- buildDropRunSQL(Constraint) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
删除约束
- buildInValue(JDBCAdapter.SQL_BUILD_IN_VALUE) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
内置函数 多种数据库兼容时需要
- buildQueryColumnRunSQL(Table, boolean) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
查询表上的列
- buildQueryConstraintRunSQL(Table, boolean) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
查询表上的约束
- buildQueryIndexRunSQL(Table, boolean) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
查询表上的列
- buildQueryMasterTableRunSQL(String, String, String, String) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
查询主表
- buildQueryPartitionTableRunSQL(String, String, String, String) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
查询分区表
- buildQueryPartitionTableRunSQL(MasterTable, Map<String, Object>) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
- buildQueryTableRunSQL(String, String, String, String) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
查询表
- buildQueryTagRunSQL(Table, boolean) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
- buildRenameRunSQL(Table) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改表名
一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildRenameRunSQL(MasterTable) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
- buildRenameRunSQL(PartitionTable) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
- buildRenameRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改列名
一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildRenameRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改标签名
一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildRenameRunSQL(Index) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改索引名
一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildRenameRunSQL(Constraint) - 类 中的方法org.anyline.data.jdbc.h2.H2Adapter
-
修改约束名
一般不直接调用,如果需要由buildAlterRunSQL内部统一调用