索引
All Classes and Interfaces|所有程序包
A
- afterPropertiesSet() - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- alterColumnKeyword() - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
B
- BFILE - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- BIGINT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- BIGSERIAL - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- BINARY - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- BINARY_DOUBLE - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- BINARY_FLOAT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- BIT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- BLOB - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- BOOL - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- BOX - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- buildAddCommentRunSQL(Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加表备注(表创建完成后调用,创建过程能添加备注的不需要实现)
- buildAddCommentRunSQL(Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加表备注(表创建完成后调用,创建过程能添加备注的不需要实现)
- buildAddCommentRunSQL(View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildAddRunSQL(Column, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加列 ALTER TABLE HR_USER ADD UPT_TIME datetime CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP comment '修改时间' AFTER ID;
- buildAddRunSQL(Constraint) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加约束
- buildAddRunSQL(ForeignKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加外键
- buildAddRunSQL(Index) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加索引
- buildAddRunSQL(PrimaryKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加主键
- buildAddRunSQL(Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加标签 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;
- buildAlterRunSQL(Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildAlterRunSQL(Column, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改列 ALTER TABLE HR_USER CHANGE UPT_TIME UPT_TIME datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP comment '修改时间' AFTER ID;
- buildAlterRunSQL(Constraint) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改约束 有可能生成多条SQL
- buildAlterRunSQL(ForeignKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加外键
- buildAlterRunSQL(Index) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改索引 有可能生成多条SQL
- buildAlterRunSQL(MasterTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildAlterRunSQL(PartitionTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildAlterRunSQL(PrimaryKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改主键 有可能生成多条SQL
- buildAlterRunSQL(Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildAlterRunSQL(Table, Collection<Column>) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改列 有可能生成多条SQL,根据数据库类型优先合并成一条执行
- buildAlterRunSQL(Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改标签 ALTER TABLE HR_USER CHANGE UPT_TIME UPT_TIME datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP comment '修改时间' AFTER ID;
- buildAlterRunSQL(View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildChangeCommentRunSQL(Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改备注 COMMENT ON COLUMN T.ID IS 'ABC'
- buildChangeCommentRunSQL(MasterTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildChangeCommentRunSQL(PartitionTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildChangeCommentRunSQL(Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改备注 COMMENT ON TABLE T IS 'ABC';
- buildChangeCommentRunSQL(Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改备注 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildChangeCommentRunSQL(View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildChangeDefaultRunSQL(Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改默认值 ALTER TABLE MY_TEST_TABLE MODIFY B DEFAULT 2
- buildChangeDefaultRunSQL(Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改默认值 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildChangeNullableRunSQL(Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改非空限制 ALTER TABLE T MODIFY C NOT NULL ;
- buildChangeNullableRunSQL(Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改非空限制 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildChangeTypeRunSQL(Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改数据类型 1.ADD NEW COLUMN 2.FORMAT VALUE 3.MOVE VALUE alter table tb modify (name nvarchar2(20))
- buildChangeTypeRunSQL(Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改数据类型 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildCreateRunSQL(MasterTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
创建主表
- buildCreateRunSQL(PartitionTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
创建分区表
- buildCreateRunSQL(Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildCreateRunSQL(View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildDropAutoIncrement(Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
取消自增
- buildDropRunSQL(Column, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除列 ALTER TABLE HR_USER DROP COLUMN NAME;
- buildDropRunSQL(Constraint) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除约束
- buildDropRunSQL(ForeignKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除外键
- buildDropRunSQL(Index) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除索引
- buildDropRunSQL(MasterTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildDropRunSQL(PartitionTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildDropRunSQL(PrimaryKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除主键
- buildDropRunSQL(Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除表
- buildDropRunSQL(Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除标签 ALTER TABLE HR_USER DROP TAG NAME;
- buildDropRunSQL(View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除视图
- buildQueryColumnRunSQL(Table, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表上的列
- buildQueryConstraintRunSQL(Table, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表上的约束
- buildQueryForeignsRunSQL(Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表上的外键
- buildQueryIndexRunSQL(Table, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表上的列
- buildQueryMasterTableRunSQL(String, String, String, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询主表
- buildQueryPartitionTableRunSQL(String, String, String, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询分区表
- buildQueryPartitionTableRunSQL(MasterTable, Map<String, Object>) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildQueryPartitionTableRunSQL(MasterTable, Map<String, Object>, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildQueryPrimaryRunSQL(Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表上的主键
- buildQuerySequence(boolean, String...) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询序列cur 或 next value
- buildQueryTableCommentRunSQL(String, String, String, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表备注
- buildQueryTableRunSQL(String, String, String, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表
- buildQueryTagRunSQL(Table, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildQueryTriggerRunSQL(Table, List<Trigger.EVENT>) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表上的trigger
- buildQueryViewRunSQL(String, String, String, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询视图
- buildRenameRunSQL(Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改列名 ALTER TABLE 表名 RENAME COLUMN RENAME 老列名 TO 新列名
- buildRenameRunSQL(Constraint) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改约束名 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildRenameRunSQL(ForeignKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改外键名 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildRenameRunSQL(Index) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改索引名 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildRenameRunSQL(MasterTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildRenameRunSQL(PartitionTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildRenameRunSQL(PrimaryKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改主键名 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildRenameRunSQL(Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改表名 ALTER TABLE A RENAME TO B;
- buildRenameRunSQL(Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改标签名 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- buildRenameRunSQL(View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改视图名 子类实现 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
- BYTEA - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
C
- CHAR - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- charset(StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
编码
- checkColumnExists(StringBuilder, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
创建或删除列时检测是否存在
- checkTableExists(StringBuilder, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- checkTagExists(StringBuilder, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
创建或删除标签时检测是否存在
- checkViewExists(StringBuilder, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
创建或删除视图时检测视图是否存在
- CIDR - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- CIRCLE - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- CLOB - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- columns(boolean, LinkedHashMap<String, T>, DatabaseMetaData, Table, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- columns(boolean, LinkedHashMap<String, T>, Table, SqlRowSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- columns(int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- comment(StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
备注
- comment(StringBuilder, Index) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
索引备注
- comment(StringBuilder, Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
备注 不支持在创建表时带备注,创建后单独添加 buildAddCommentRunSQL(table)
- comment(StringBuilder, View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
备注 不支持创建视图时带备注的 在子视图中忽略
- concat(String...) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- constraints(boolean, Table, LinkedHashMap<String, T>, ResultSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- constraints(boolean, Table, LinkedHashMap<String, T>, SqlRowSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- constraints(int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
根据查询结果集构造Constraint
- createInserts(JdbcTemplate, Run, String, Collection, List<String>) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- createInserts(JdbcTemplate, Run, String, DataSet, List<String>) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
批量插入 有序列时 只支持插入同一张表 INSERT INTO CRM_USER(ID, NAME) SELECT gloable_seq.nextval AS ID , M.* FROM ( SELECT 'A1' AS NM FROM DUAL UNION ALL SELECT 'A2' FROM DUAL UNION ALL SELECT 'A3' FROM DUAL ) M
- createPrimaryValue(JdbcTemplate, Collection, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
D
- DATE - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- DATETIME - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- DATETIME2 - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- DATETIMEOFFSET - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- DECIMAL - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- defaultValue(StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
默认值
- define(StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
定义列
- DOUBLE - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
E
- ENUM - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
F
- FLOAT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- FLOAT4 - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- FLOAT8 - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- foreigns(int, Table, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
根据查询结果集构造PrimaryKey
G
- GEOGRAPHY - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- GEOMETRY - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- GEOMETRYCOLLECTION - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
H
- HIERARCHYID - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
I
- identity(String, Object, KeyHolder) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- IMAGE - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- increment(StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
递增列
- indexs(boolean, LinkedHashMap<String, T>, DatabaseMetaData, Table, boolean, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- indexs(boolean, Table, LinkedHashMap<String, T>, SqlRowSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- indexs(int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- INET - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- insert(JdbcTemplate, String, Object, String, List<Object>, String[]) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
执行 insert
- INT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- INT2 - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- INT4 - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- INT8 - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- INTEGER - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- INTERVAL - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- IS_GET_SEQUENCE_VALUE_BEFORE_INSERT - 类中的静态变量 org.anyline.data.jdbc.oscar.OscarAdapter
- isBooleanColumn(Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- isCharColumn(Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- isNumberColumn(Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
是否同数字
J
- JSON - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- JSONB - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
L
- LINE - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- LONG - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- LONGBLOB - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- LONGTEXT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- LSEG - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
M
- MACADDR - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- MEDIUMBLOB - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- MEDIUMINT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- MEDIUMTEXT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- MONEY - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- mtables(boolean, LinkedHashMap<String, T>, DatabaseMetaData, String, String, String, String...) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
从jdbc结果中提取表结构 ResultSet set = con.getMetaData().getTables()
- mtables(int, boolean, String, String, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
从上一步生成的SQL查询结果中 提取表结构
- MULTILINESTRING - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- MULTIPOINT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- MULTIPOLYGON - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
N
- name(StringBuilder, Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
构造完整表名
- NCHAR - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- NCLOB - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- NTEXT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- nullable(StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
编码
- NUMBER - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- NUMERIC - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- NVARCHAR - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- NVARCHAR2 - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
O
- onupdate(StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
更新行事件
- org.anyline.data.jdbc.oscar - 程序包 org.anyline.data.jdbc.oscar
- OscarAdapter - org.anyline.data.jdbc.oscar中的类
- OscarAdapter() - 类的构造器 org.anyline.data.jdbc.oscar.OscarAdapter
- OscarColumnTypeAlias - org.anyline.data.jdbc.oscar中的Enum Class
P
- parseExists(Run) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- parseFinalQuery(Run) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- PATH - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- POINT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- POLYGON - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- position(StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
位置
- primary(int, Table, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
根据查询结果集构造PrimaryKey
- primary(StringBuilder, Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
主键 CONSTRAINT PK_BS_DEV PRIMARY KEY (ID ASC)
- ptables(boolean, LinkedHashMap<String, T>, DatabaseMetaData, String, String, MasterTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
根据JDBC
- ptables(int, int, boolean, MasterTable, String, String, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
根据查询结果集构造Table
R
- RAW - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- REAL - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- ROWID - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
S
- SERIAL - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- SERIAL2 - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- SERIAL4 - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- SERIAL8 - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- SET - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- SMALLDATETIME - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- SMALLINT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- SMALLMONEY - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- SMALLSERIAL - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- SQL_VARIANT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- standard() - enum class中的方法 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- SYSNAME - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
T
- tables(boolean, LinkedHashMap<String, T>, DatabaseMetaData, String, String, String, String...) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- tables(int, boolean, String, String, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- tags(boolean, LinkedHashMap<String, T>, DatabaseMetaData, Table, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- tags(boolean, Table, LinkedHashMap<String, T>, SqlRowSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- tags(int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
根据查询结果集构造Tag
- TEXT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- TIME - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- TIMESTAMP - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- TIMESTAMP_LOCAL_ZONE - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- TIMESTAMP_ZONE - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- TIMEZ - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- TINYBLOB - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- TINYINT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- TINYTEXT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- triggers(int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
根据查询结果集构造Constraint
- TSQUERY - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- TSVECTOR - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- TXID_SNAPSHOT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- type() - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- type(StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
数据类型
U
- UNIQUEIDENTIFIER - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- UROWID - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- UUID - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
V
- value(Column, JDBCAdapter.SQL_BUILD_IN_VALUE) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
内置函数
- valueOf(String) - enum class中的静态方法 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
-
Returns the enum constant of this class with the specified name.
- values() - enum class中的静态方法 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
-
Returns an array containing the constants of this enum class, in the order they are declared.
- VARBINARY - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- VARBIT - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- VARCHAR - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- VARCHAR2 - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- views(int, boolean, String, String, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
X
- XML - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
Y
- YEAR - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
All Classes and Interfaces|所有程序包