索引
All Classes and Interfaces|所有程序包
A
- afterPropertiesSet() - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- alterColumnKeyword(DataRuntime) - 类中的方法 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
- buildAddRun(DataRuntime, 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;
- buildAddRun(DataRuntime, Constraint) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加约束
- buildAddRun(DataRuntime, ForeignKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加外键
- buildAddRun(DataRuntime, Index) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加索引
- buildAddRun(DataRuntime, PrimaryKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加主键
- buildAddRun(DataRuntime, 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;
- buildAlterRun(DataRuntime, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildAlterRun(DataRuntime, 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;
- buildAlterRun(DataRuntime, Constraint) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改约束 有可能生成多条SQL
- buildAlterRun(DataRuntime, ForeignKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加外键
- buildAlterRun(DataRuntime, Index) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改索引 有可能生成多条SQL
- buildAlterRun(DataRuntime, MasterTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildAlterRun(DataRuntime, PartitionTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildAlterRun(DataRuntime, PrimaryKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改主键 有可能生成多条SQL
- buildAlterRun(DataRuntime, Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildAlterRun(DataRuntime, Table, Collection<Column>) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改列 有可能生成多条SQL,根据数据库类型优先合并成一条执行
- buildAlterRun(DataRuntime, 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;
- buildAlterRun(DataRuntime, View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildAppendCommentRun(DataRuntime, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加表备注(表创建完成后调用,创建过程能添加备注的不需要实现)
- buildAppendCommentRun(DataRuntime, Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
添加表备注(表创建完成后调用,创建过程能添加备注的不需要实现)
- buildAppendCommentRun(DataRuntime, View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildChangeCommentRun(DataRuntime, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改备注 COMMENT ON COLUMN T.ID IS 'ABC'
- buildChangeCommentRun(DataRuntime, MasterTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildChangeCommentRun(DataRuntime, PartitionTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildChangeCommentRun(DataRuntime, Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改备注 COMMENT ON TABLE T IS 'ABC';
- buildChangeCommentRun(DataRuntime, Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改备注 一般不直接调用,如果需要由buildAlterRun内部统一调用
- buildChangeCommentRun(DataRuntime, View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildChangeDefaultRun(DataRuntime, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改默认值 ALTER TABLE MY_TEST_TABLE MODIFY B DEFAULT 2
- buildChangeDefaultRun(DataRuntime, Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改默认值 一般不直接调用,如果需要由buildAlterRun内部统一调用
- buildChangeNullableRun(DataRuntime, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改非空限制 ALTER TABLE T MODIFY C NOT NULL ;
- buildChangeNullableRun(DataRuntime, Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改非空限制 一般不直接调用,如果需要由buildAlterRun内部统一调用
- buildChangeTypeRun(DataRuntime, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改数据类型 1.ADD NEW COLUMN 2.FORMAT VALUE 3.MOVE VALUE alter table tb modify (name nvarchar2(20))
- buildChangeTypeRun(DataRuntime, Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改数据类型 一般不直接调用,如果需要由buildAlterRun内部统一调用
- buildCreateRun(DataRuntime, MasterTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
创建主表
- buildCreateRun(DataRuntime, PartitionTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
创建分区表
- buildCreateRun(DataRuntime, Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildCreateRun(DataRuntime, View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildDropAutoIncrement(DataRuntime, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
取消自增
- buildDropRun(DataRuntime, Column, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除列 ALTER TABLE HR_USER DROP COLUMN NAME;
- buildDropRun(DataRuntime, Constraint) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除约束
- buildDropRun(DataRuntime, ForeignKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除外键
- buildDropRun(DataRuntime, Index) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除索引
- buildDropRun(DataRuntime, MasterTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildDropRun(DataRuntime, PartitionTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildDropRun(DataRuntime, PrimaryKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除主键
- buildDropRun(DataRuntime, Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除表
- buildDropRun(DataRuntime, Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除标签 ALTER TABLE HR_USER DROP TAG NAME;
- buildDropRun(DataRuntime, View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
删除视图
- buildQueryColumnRun(DataRuntime, Table, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表上的列
- buildQueryConstraintRun(DataRuntime, Table, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表上的约束
- buildQueryForeignsRun(DataRuntime, Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表上的外键
- buildQueryIndexRun(DataRuntime, Table, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表上的列
- buildQueryMasterTableRun(DataRuntime, String, String, String, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询主表
- buildQueryPartitionTableRun(DataRuntime, String, String, String, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询分区表
- buildQueryPartitionTableRun(DataRuntime, MasterTable, Map<String, Object>) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildQueryPartitionTableRun(DataRuntime, MasterTable, Map<String, Object>, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildQueryPrimaryRun(DataRuntime, Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表上的主键
- buildQuerySequence(DataRuntime, boolean, String...) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询序列cur 或 next value
- buildQueryTableCommentRun(DataRuntime, String, String, String, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表备注
- buildQueryTableRun(DataRuntime, boolean, String, String, String, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表
- buildQueryTagRun(DataRuntime, Table, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildQueryTriggerRun(DataRuntime, Table, List<Trigger.EVENT>) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询表上的trigger
- buildQueryViewRun(DataRuntime, boolean, String, String, String, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
查询视图
- buildRenameRun(DataRuntime, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改列名 ALTER TABLE 表名 RENAME COLUMN RENAME 老列名 TO 新列名
- buildRenameRun(DataRuntime, Constraint) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改约束名 一般不直接调用,如果需要由buildAlterRun内部统一调用
- buildRenameRun(DataRuntime, ForeignKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改外键名 一般不直接调用,如果需要由buildAlterRun内部统一调用
- buildRenameRun(DataRuntime, Index) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改索引名 一般不直接调用,如果需要由buildAlterRun内部统一调用
- buildRenameRun(DataRuntime, MasterTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildRenameRun(DataRuntime, PartitionTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- buildRenameRun(DataRuntime, PrimaryKey) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改主键名 一般不直接调用,如果需要由buildAlterRun内部统一调用
- buildRenameRun(DataRuntime, Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改表名 ALTER TABLE A RENAME TO B;
- buildRenameRun(DataRuntime, Tag) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改标签名 一般不直接调用,如果需要由buildAlterRun内部统一调用
- buildRenameRun(DataRuntime, View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
修改视图名 子类实现 一般不直接调用,如果需要由buildAlterRun内部统一调用
- BYTEA - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
C
- CHAR - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- charset(DataRuntime, StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
编码
- checkColumnExists(DataRuntime, StringBuilder, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
创建或删除列时检测是否存在
- checkTableExists(DataRuntime, StringBuilder, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- checkTagExists(DataRuntime, StringBuilder, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
创建或删除标签时检测是否存在
- checkViewExists(DataRuntime, 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(DataRuntime, boolean, LinkedHashMap<String, T>, Table, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- columns(DataRuntime, boolean, LinkedHashMap<String, T>, Table, SqlRowSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- columns(DataRuntime, int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- comment(DataRuntime, StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
备注
- comment(DataRuntime, StringBuilder, Index) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
索引备注
- comment(DataRuntime, StringBuilder, Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
备注 不支持在创建表时带备注,创建后单独添加 buildAppendCommentRun(DataRuntime runtime, Table)
- comment(DataRuntime, StringBuilder, View) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
备注 不支持创建视图时带备注的 在子视图中忽略
- concat(DataRuntime, String...) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- constraints(DataRuntime, boolean, Table, LinkedHashMap<String, T>, ResultSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- constraints(DataRuntime, boolean, Table, LinkedHashMap<String, T>, SqlRowSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- constraints(DataRuntime, int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
根据查询结果集构造Constraint
- createPrimaryValue(DataRuntime, 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(DataRuntime, StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
默认值
- define(DataRuntime, 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
- fillInsertContent(DataRuntime, Run, String, Collection, LinkedHashMap<String, Column>) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- fillInsertContent(DataRuntime, Run, String, DataSet, LinkedHashMap<String, Column>) - 类中的方法 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
- 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(DataRuntime, 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(DataRuntime, String, Object, KeyHolder) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- IMAGE - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- increment(DataRuntime, StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
递增列
- indexs(DataRuntime, boolean, LinkedHashMap<String, T>, Table, boolean, boolean) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- indexs(DataRuntime, boolean, Table, LinkedHashMap<String, T>, SqlRowSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- indexs(DataRuntime, int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- INET - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- insert(DataRuntime, String, Object, Run, 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(DataRuntime, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- isCharColumn(DataRuntime, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- isNumberColumn(DataRuntime, 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
- mergeFinalExists(DataRuntime, Run) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- mergeFinalQuery(DataRuntime, Run) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- MONEY - enum class 中的枚举常量 org.anyline.data.jdbc.oscar.OscarColumnTypeAlias
- mtables(DataRuntime, boolean, LinkedHashMap<String, T>, String, String, String, String...) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
从jdbc结果中提取表结构 ResultSet set = con.getMetaData().getTables()
- mtables(DataRuntime, 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(DataRuntime, 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(DataRuntime, 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(DataRuntime, 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
- 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(DataRuntime, StringBuilder, Column) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
位置
- primary(DataRuntime, int, Table, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
根据查询结果集构造PrimaryKey
- primary(DataRuntime, StringBuilder, Table) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
主键 CONSTRAINT PK_BS_DEV PRIMARY KEY (ID ASC)
- ptables(DataRuntime, boolean, LinkedHashMap<String, T>, String, String, MasterTable) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
-
根据JDBC
- ptables(DataRuntime, 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(DataRuntime, boolean, LinkedHashMap<String, T>, String, String, String, String...) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- tables(DataRuntime, boolean, List<T>, String, String, String, String...) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- tables(DataRuntime, int, boolean, String, String, LinkedHashMap<String, T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- tables(DataRuntime, int, boolean, String, String, List<T>, DataSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- tags(DataRuntime, boolean, LinkedHashMap<String, T>, Table, String) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- tags(DataRuntime, boolean, Table, LinkedHashMap<String, T>, SqlRowSet) - 类中的方法 org.anyline.data.jdbc.oscar.OscarAdapter
- tags(DataRuntime, 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(DataRuntime, 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(DataRuntime, 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(DataRuntime, Column, DriverAdapter.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(DataRuntime, 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|所有程序包