跳过导航链接
A B C D I M N O P S T V 

A

afterPropertiesSet() - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
alterColumnKeyword() - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 

B

buildAddRunSQL(Column, boolean) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
添加列 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(Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildAddRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
添加标签 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(PrimaryKey) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
添加主键
buildAddRunSQL(Index) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
添加索引
buildAddRunSQL(Constraint) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
添加约束
buildAlterRunSQL(Table) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildAlterRunSQL(Table, Collection<Column>) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改列 有可能生成多条SQL,根据数据库类型优先合并成一条执行
buildAlterRunSQL(MasterTable) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildAlterRunSQL(PartitionTable) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildAlterRunSQL(Column, boolean) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改列 ALTER TABLE HR_USER CHANGE UPT_TIME UPT_TIME datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP comment '修改时间' AFTER ID;
buildAlterRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildAlterRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改标签 ALTER TABLE HR_USER CHANGE UPT_TIME UPT_TIME datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP comment '修改时间' AFTER ID;
buildAlterRunSQL(PrimaryKey) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改主键 有可能生成多条SQL
buildAlterRunSQL(Index) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改索引 有可能生成多条SQL
buildAlterRunSQL(Constraint) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改约束 有可能生成多条SQL
buildChangeCommentRunSQL(Table) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改备注 COMMENT ON TABLE T IS 'ABC';
buildChangeCommentRunSQL(MasterTable) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildChangeCommentRunSQL(PartitionTable) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildChangeCommentRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改备注 COMMENT ON COLUMN T.ID IS 'ABC'
buildChangeCommentRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改备注 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
buildChangeDefaultRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改默认值 ALTER TABLE T ALTER COLUMN C SET DEFAULT 0; ALTER TABLE T ALTER COLUMN C DROP DEFAULT;
buildChangeDefaultRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改默认值 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
buildChangeNullableRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改非空限制 ALTER TABLE TABLE_NAME ALTER COLUMN_NAME DROP NOT NULL ALTER TABLE TABLE_NAME ALTER COLUMN_NAME SET NOT NULL
buildChangeNullableRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改非空限制 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
buildChangeTypeRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
alter table T alter column C type varchar(64);
buildChangeTypeRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改数据类型 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
buildCreateCommentRunSQL(Table) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
添加表备注(表创建完成后调用,创建过程能添加备注的不需要实现)
buildCreateCommentRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
添加表备注(表创建完成后调用,创建过程能添加备注的不需要实现)
buildCreateRunSQL(Table) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildCreateRunSQL(MasterTable) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
创建主表
buildCreateRunSQL(PartitionTable) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
创建分区表
buildDropRunSQL(Table) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
删除表
buildDropRunSQL(MasterTable) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildDropRunSQL(PartitionTable) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildDropRunSQL(Column, boolean) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
删除列 ALTER TABLE HR_USER DROP COLUMN NAME;
buildDropRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
删除标签 ALTER TABLE HR_USER DROP TAG NAME;
buildDropRunSQL(PrimaryKey) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
删除主键
buildDropRunSQL(Index) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
删除索引
buildDropRunSQL(Constraint) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
删除约束
buildQueryColumnRunSQL(Table, boolean) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
查询表上的列
buildQueryConstraintRunSQL(Table, boolean) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
查询表上的约束
buildQueryIndexRunSQL(Table, String) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
查询表上的列
buildQueryMasterTableRunSQL(String, String, String, String) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
查询主表
buildQueryPartitionTableRunSQL(String, String, String, String) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
查询分区表
buildQueryPartitionTableRunSQL(MasterTable, Map<String, Object>) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildQueryPrimaryRunSQL(Table) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
查询表上的主键
buildQuerySequence(boolean, String...) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
查询序列cur 或 next value
buildQueryTableCommentRunSQL(String, String, String, String) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
查询表
buildQueryTableRunSQL(String, String, String, String) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
查询表
buildQueryTagRunSQL(Table, boolean) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildRenameRunSQL(Table) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改表名 ALTER TABLE A RENAME TO B;
buildRenameRunSQL(MasterTable) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildRenameRunSQL(PartitionTable) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
buildRenameRunSQL(Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改列名 ALTER TABLE T RENAME A to B ;
buildRenameRunSQL(Tag) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改标签名 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
buildRenameRunSQL(PrimaryKey) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改主键名 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
buildRenameRunSQL(Index) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改索引名 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用
buildRenameRunSQL(Constraint) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
修改约束名 一般不直接调用,如果需要由buildAlterRunSQL内部统一调用

C

charset(StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
编码
checkColumnExists(StringBuilder, boolean) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
创建或删除列时检测是否存在
checkTableExists(StringBuilder, boolean) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
创建之前 检测表是否存在 IF NOT EXISTS
checkTagExists(StringBuilder, boolean) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
创建或删除标签时检测是否存在
column_types - 类 中的静态变量org.anyline.data.jdbc.informix.InformixAdapter
 
columns(int, boolean, Table, LinkedHashMap<String, Column>, DataSet) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
columns(boolean, LinkedHashMap<String, Column>, Table, SqlRowSet) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
columns(boolean, LinkedHashMap<String, Column>, DatabaseMetaData, Table, String) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
comment(StringBuilder, Table) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
备注
comment(StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
备注
concat(String...) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
constraints(int, boolean, Table, LinkedHashMap<String, Constraint>, DataSet) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
根据查询结果集构造Constraint
constraints(boolean, Table, LinkedHashMap<String, Constraint>, SqlRowSet) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
constraints(boolean, Table, LinkedHashMap<String, Constraint>, ResultSet) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
createInserts(JdbcTemplate, Run, String, DataSet, List<String>) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
批量插入 有序列时 只支持插入同一张表 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
createInserts(JdbcTemplate, Run, String, Collection, List<String>) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
createPrimaryValue(JdbcTemplate, Collection, String) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 

D

defaultValue(StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
默认值
define(StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
定义列

I

identity(String, Object, KeyHolder) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
increment(StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
递增列 通过数据类型实现,这里不需要
indexs(int, boolean, Table, LinkedHashMap<String, Index>, DataSet) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
indexs(boolean, Table, LinkedHashMap<String, Index>, SqlRowSet) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
indexs(boolean, LinkedHashMap<String, Index>, DatabaseMetaData, Table, boolean, boolean) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
InformixAdapter - org.anyline.data.jdbc.informix中的类
 
InformixAdapter() - 类 的构造器org.anyline.data.jdbc.informix.InformixAdapter
 
InformixColumnTypeAlias - org.anyline.data.jdbc.informix中的枚举
 
insert(JdbcTemplate, String, Object, String, List<Object>, String[]) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
执行 insert
IS_GET_SEQUENCE_VALUE_BEFORE_INSERT - 类 中的静态变量org.anyline.data.jdbc.informix.InformixAdapter
 
isBooleanColumn(Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
是否是boolean类型
isCharColumn(Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
是否是字符类型
isNumberColumn(Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
是否同数字

M

mtables(boolean, LinkedHashMap<String, MasterTable>, DatabaseMetaData, String, String, String, String...) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
从jdbc结果中提取表结构 ResultSet set = con.getMetaData().getTables()
mtables(int, boolean, String, String, LinkedHashMap<String, MasterTable>, DataSet) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
从上一步生成的SQL查询结果中 提取表结构

N

name(StringBuilder, Table) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
构造完整表名
nullable(StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
编码

O

onupdate(StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
更新行事件
org.anyline.data.jdbc.informix - 程序包 org.anyline.data.jdbc.informix
 

P

parseExists(Run) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
parseFinalQuery(Run) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
position(StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
位置
primary(int, Table, DataSet) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
根据查询结果集构造PrimaryKey
primary(StringBuilder, Table) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
主键 CONSTRAINT PK_BS_DEV PRIMARY KEY (ID ASC)
ptables(int, int, boolean, MasterTable, String, String, LinkedHashMap<String, PartitionTable>, DataSet) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
根据查询结果集构造Table
ptables(boolean, LinkedHashMap<String, PartitionTable>, DatabaseMetaData, String, String, MasterTable) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
根据JDBC

S

standard() - 枚举 中的方法org.anyline.data.jdbc.informix.InformixColumnTypeAlias
 

T

tables(int, boolean, String, String, LinkedHashMap<String, Table>, DataSet) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
tables(boolean, LinkedHashMap<String, Table>, DatabaseMetaData, String, String, String, String...) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
tags(int, boolean, Table, LinkedHashMap<String, Tag>, DataSet) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
根据查询结果集构造Tag
tags(boolean, Table, LinkedHashMap<String, Tag>, SqlRowSet) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
tags(boolean, LinkedHashMap<String, Tag>, DatabaseMetaData, Table, String) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
type() - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
 
type(StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
数据类型
type(StringBuilder, Column, String, boolean, boolean) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
列数据类型定义

V

value(Column, JDBCAdapter.SQL_BUILD_IN_VALUE) - 类 中的方法org.anyline.data.jdbc.informix.InformixAdapter
内置函数 多种数据库兼容时需要
valueOf(String) - 枚举 中的静态方法org.anyline.data.jdbc.informix.InformixColumnTypeAlias
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法org.anyline.data.jdbc.informix.InformixColumnTypeAlias
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
A B C D I M N O P S T V 
跳过导航链接

Copyright © 2023. All rights reserved.