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

A

afterPropertiesSet() - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
alterColumnKeyword(DataRuntime) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 

B

buildAddRun(DataRuntime, Column, boolean) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
添加列 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;
buildAddRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
添加标签 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;
buildAddRun(DataRuntime, PrimaryKey) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
添加主键
buildAddRun(DataRuntime, ForeignKey) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
添加外键
buildAddRun(DataRuntime, Index) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
添加索引
buildAddRun(DataRuntime, Constraint) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
添加约束
buildAlterRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildAlterRun(DataRuntime, Table, Collection<Column>) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改列 有可能生成多条SQL,根据数据库类型优先合并成一条执行
buildAlterRun(DataRuntime, View) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildAlterRun(DataRuntime, MasterTable) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildAlterRun(DataRuntime, PartitionTable) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildAlterRun(DataRuntime, Column, boolean) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改列 ALTER TABLE HR_USER CHANGE UPT_TIME UPT_TIME datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP comment '修改时间' AFTER ID;
buildAlterRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改标签 ALTER TABLE HR_USER CHANGE UPT_TIME UPT_TIME datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP comment '修改时间' AFTER ID;
buildAlterRun(DataRuntime, PrimaryKey) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改主键 有可能生成多条SQL
buildAlterRun(DataRuntime, ForeignKey) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
添加外键
buildAlterRun(DataRuntime, Index) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改索引 有可能生成多条SQL
buildAlterRun(DataRuntime, Constraint) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改约束 有可能生成多条SQL
buildAlterRun(DataRuntime, Trigger) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改触发器 有可能生成多条SQL
buildAlterRun(DataRuntime, Procedure) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改存储过程 有可能生成多条SQL
buildAlterRun(DataRuntime, Function) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改函数 有可能生成多条SQL
buildAppendCommentRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
添加表备注(表创建完成后调用,创建过程能添加备注的不需要实现)
buildAppendCommentRun(DataRuntime, View) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildAppendCommentRun(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
添加表备注(表创建完成后调用,创建过程能添加备注的不需要实现)
buildChangeCommentRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改备注 COMMENT ON TABLE T IS 'ABC';
buildChangeCommentRun(DataRuntime, View) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildChangeCommentRun(DataRuntime, MasterTable) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildChangeCommentRun(DataRuntime, PartitionTable) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildChangeCommentRun(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改备注 COMMENT ON COLUMN T.ID IS 'ABC'
buildChangeCommentRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改备注 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildChangeDefaultRun(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改默认值 ALTER TABLE T ALTER COLUMN C SET DEFAULT 0; ALTER TABLE T ALTER COLUMN C DROP DEFAULT;
buildChangeDefaultRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改默认值 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildChangeNullableRun(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改非空限制 ALTER TABLE TABLE_NAME ALTER COLUMN_NAME DROP NOT NULL ALTER TABLE TABLE_NAME ALTER COLUMN_NAME SET NOT NULL
buildChangeNullableRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改非空限制 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildChangeTypeRun(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
alter table T alter column C type varchar(64);
buildChangeTypeRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改数据类型 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildCreateRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildCreateRun(DataRuntime, View) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildCreateRun(DataRuntime, MasterTable) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
创建主表
buildCreateRun(DataRuntime, PartitionTable) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
创建分区表
buildCreateRun(DataRuntime, Trigger) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
添加触发器
buildCreateRun(DataRuntime, Procedure) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
添加存储过程
buildCreateRun(DataRuntime, Function) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
添加函数
buildDropAutoIncrement(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
取消自增
buildDropRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
删除表
buildDropRun(DataRuntime, View) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
删除视图
buildDropRun(DataRuntime, MasterTable) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildDropRun(DataRuntime, PartitionTable) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildDropRun(DataRuntime, Column, boolean) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
删除列 ALTER TABLE HR_USER DROP COLUMN NAME;
buildDropRun(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildDropRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
删除标签 ALTER TABLE HR_USER DROP TAG NAME;
buildDropRun(DataRuntime, PrimaryKey) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
删除主键
buildDropRun(DataRuntime, ForeignKey) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
删除外键
buildDropRun(DataRuntime, Index) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
删除索引
buildDropRun(DataRuntime, Constraint) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
删除约束
buildDropRun(DataRuntime, Trigger) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
删除触发器
buildDropRun(DataRuntime, Procedure) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
删除存储过程
buildDropRun(DataRuntime, Function) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
删除函数
buildQueryColumnRun(DataRuntime, Table, boolean) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
查询表上的列
buildQueryConstraintRun(DataRuntime, Table, boolean) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
查询表上的约束
buildQueryForeignsRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
查询表上的外键
buildQueryIndexRun(DataRuntime, Table, String) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
查询表上的列
buildQueryMasterTableRun(DataRuntime, String, String, String, String) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
查询主表
buildQueryPartitionTableRun(DataRuntime, String, String, String, String) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
查询分区表
buildQueryPartitionTableRun(DataRuntime, MasterTable, Map<String, Object>) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildQueryPrimaryRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
查询表上的主键
buildQuerySequence(DataRuntime, boolean, String...) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
查询序列cur 或 next value
buildQueryTableCommentRun(DataRuntime, String, String, String, String) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
查询表
buildQueryTableRun(DataRuntime, boolean, String, String, String, String) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
查询表
buildQueryTagRun(DataRuntime, Table, boolean) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildQueryTriggerRun(DataRuntime, Table, List<Trigger.EVENT>) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
查询表上的trigger
buildRenameRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改表名 ALTER TABLE A RENAME TO B;
buildRenameRun(DataRuntime, View) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改视图名 子类实现 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, MasterTable) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildRenameRun(DataRuntime, PartitionTable) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
buildRenameRun(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改列名 ALTER TABLE T RENAME A to B ;
buildRenameRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改标签名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, PrimaryKey) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改主键名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, ForeignKey) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改外键名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, Index) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改索引名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, Constraint) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改约束名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, Trigger) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改触发器名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, Procedure) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改存储过程名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, Function) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
修改函数名 一般不直接调用,如果需要由buildAlterRun内部统一调用

C

charset(DataRuntime, StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
编码
checkColumnExists(DataRuntime, StringBuilder, boolean) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
创建或删除列时检测是否存在
checkTableExists(DataRuntime, StringBuilder, boolean) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
创建之前 检测表是否存在 IF NOT EXISTS
checkTagExists(DataRuntime, StringBuilder, boolean) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
创建或删除标签时检测是否存在
checkViewExists(DataRuntime, StringBuilder, boolean) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
创建或删除视图时检测视图是否存在
columns(DataRuntime, int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
columns(DataRuntime, boolean, LinkedHashMap<String, T>, Table, SqlRowSet) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
columns(DataRuntime, boolean, LinkedHashMap<String, T>, Table, String) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
comment(DataRuntime, StringBuilder, Table) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
备注
comment(DataRuntime, StringBuilder, View) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
备注 不支持创建视图时带备注的 在子视图中忽略
comment(DataRuntime, StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
备注
comment(DataRuntime, StringBuilder, Index) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
索引备注
concat(DataRuntime, String...) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
constraints(DataRuntime, int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
根据查询结果集构造Constraint
constraints(DataRuntime, boolean, Table, LinkedHashMap<String, T>, SqlRowSet) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
constraints(DataRuntime, boolean, Table, LinkedHashMap<String, T>, ResultSet) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 

D

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

E

each(DataRuntime, StringBuilder, Trigger) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 

F

foreigns(DataRuntime, int, Table, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
根据查询结果集构造PrimaryKey

I

increment(DataRuntime, StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
递增列 通过数据类型实现,这里不需要
indexs(DataRuntime, int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
indexs(DataRuntime, boolean, Table, LinkedHashMap<String, T>, SqlRowSet) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
indexs(DataRuntime, boolean, LinkedHashMap<String, T>, Table, boolean, boolean) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
isBooleanColumn(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
是否是boolean类型
isCharColumn(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
是否是字符类型
isNumberColumn(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
是否同数字

M

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

N

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

O

onupdate(DataRuntime, StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
更新行事件
OpenGaussAdapter - org.anyline.data.jdbc.opengauss中的类
参考 PostgresqlAdapter
OpenGaussAdapter() - 类 的构造器org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
OpenGaussColumnTypeAlias - org.anyline.data.jdbc.opengauss中的枚举
 
org.anyline.data.jdbc.opengauss - 程序包 org.anyline.data.jdbc.opengauss
 

P

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

S

standard() - 枚举 中的方法org.anyline.data.jdbc.opengauss.OpenGaussColumnTypeAlias
 

T

tables(DataRuntime, int, boolean, String, String, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
tables(DataRuntime, int, boolean, String, String, List<T>, DataSet) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
tables(DataRuntime, boolean, LinkedHashMap<String, T>, String, String, String, String...) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
tables(DataRuntime, boolean, List<T>, String, String, String, String...) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
tags(DataRuntime, int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
根据查询结果集构造Tag
tags(DataRuntime, boolean, Table, LinkedHashMap<String, T>, SqlRowSet) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
tags(DataRuntime, boolean, LinkedHashMap<String, T>, Table, String) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
triggers(DataRuntime, int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
根据查询结果集构造Constraint
type() - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
 
type(DataRuntime, StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.opengauss.OpenGaussAdapter
数据类型

V

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

Copyright © 2023. All rights reserved.