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

A

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

B

buildAddRun(DataRuntime, Column, boolean) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
添加列 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.hive.HiveAdapter
添加标签 不支持
buildAddRun(DataRuntime, PrimaryKey) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
添加主键
buildAddRun(DataRuntime, ForeignKey) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
ALTER TABLE bb ADD CONSTRAINT fk_constraint_name FOREIGN KEY (aid, acode) REFERENCES aa(id,code); 添加外键
buildAddRun(DataRuntime, Index) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
添加索引
buildAddRun(DataRuntime, Constraint) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
添加约束
buildAlterRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildAlterRun(DataRuntime, Table, Collection<Column>) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改列 有可能生成多条SQL,根据数据库类型优先合并成一条执行
buildAlterRun(DataRuntime, View) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildAlterRun(DataRuntime, MasterTable) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildAlterRun(DataRuntime, PartitionTable) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildAlterRun(DataRuntime, Column, boolean) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改列 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.hive.HiveAdapter
不支持
buildAlterRun(DataRuntime, PrimaryKey) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改主键 有可能生成多条SQL
buildAlterRun(DataRuntime, ForeignKey) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
添加外键
buildAlterRun(DataRuntime, Index) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改索引 有可能生成多条SQL
buildAlterRun(DataRuntime, Constraint) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改约束 有可能生成多条SQL
buildAlterRun(DataRuntime, Trigger) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改触发器 有可能生成多条SQL
buildAlterRun(DataRuntime, Procedure) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改存储过程 有可能生成多条SQL
buildAlterRun(DataRuntime, Function) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改函数 有可能生成多条SQL
buildAppendCommentRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
添加表备注(表创建完成后调用,创建过程能添加备注的不需要实现)
buildAppendCommentRun(DataRuntime, View) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildChangeCommentRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改表备注 ALTER TABLE T COMMENT 'ABC';
buildChangeCommentRun(DataRuntime, View) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildChangeCommentRun(DataRuntime, MasterTable) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildChangeCommentRun(DataRuntime, PartitionTable) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildChangeCommentRun(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改备注 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildChangeCommentRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改备注 不支持
buildChangeDefaultRun(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改默认值 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildChangeDefaultRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改默认值 不支持
buildChangeNullableRun(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改非空限制 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildChangeNullableRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改非空限制 不支持
buildChangeTypeRun(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改数据类型 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildChangeTypeRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改数据类型 不支持
buildCreateRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildCreateRun(DataRuntime, View) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildCreateRun(DataRuntime, MasterTable) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
创建主表
buildCreateRun(DataRuntime, PartitionTable) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
创建分区表
buildCreateRun(DataRuntime, Trigger) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
添加触发器
buildCreateRun(DataRuntime, Procedure) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
添加存储过程
buildCreateRun(DataRuntime, Function) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
添加函数
buildDropAutoIncrement(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
取消自增
buildDropRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
删除表
buildDropRun(DataRuntime, View) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
删除视图
buildDropRun(DataRuntime, MasterTable) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildDropRun(DataRuntime, PartitionTable) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildDropRun(DataRuntime, Column, boolean) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
删除列 ALTER TABLE HR_USER DROP COLUMN NAME;
buildDropRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
删除标签 不支持
buildDropRun(DataRuntime, PrimaryKey) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
删除主键
buildDropRun(DataRuntime, ForeignKey) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
删除外键
buildDropRun(DataRuntime, Index) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
删除索引
buildDropRun(DataRuntime, Constraint) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
删除约束
buildDropRun(DataRuntime, Trigger) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
删除触发器
buildDropRun(DataRuntime, Procedure) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
删除存储过程
buildDropRun(DataRuntime, Function) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
删除函数
buildQueryColumnRun(DataRuntime, Table, boolean) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询表上的列
buildQueryConstraintRun(DataRuntime, Table, boolean) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询表上的约束
buildQueryDatabaseRun(DataRuntime) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildQueryDDLRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询表DDL
buildQueryDDLRun(DataRuntime, View) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询 view DDL
buildQueryForeignsRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询表上的外键
buildQueryIndexRun(DataRuntime, Table, String) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询表上的列
buildQueryMasterTableRun(DataRuntime, String, String, String, String) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询主表
buildQueryPartitionTableRun(DataRuntime, String, String, String, String) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询分区表
buildQueryPartitionTableRun(DataRuntime, MasterTable, Map<String, Object>, String) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildQueryPartitionTableRun(DataRuntime, MasterTable, Map<String, Object>) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildQueryPrimaryRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询表上的主键
buildQueryTableCommentRun(DataRuntime, String, String, String, String) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询表
buildQueryTableRun(DataRuntime, boolean, String, String, String, String) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询表
buildQueryTagRun(DataRuntime, Table, boolean) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
不支持
buildQueryTriggerRun(DataRuntime, Table, List<Trigger.EVENT>) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询表上的trigger
buildQueryViewRun(DataRuntime, boolean, String, String, String, String) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询视图
buildRenameRun(DataRuntime, Table) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改表名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, View) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改视图名 子类实现 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, MasterTable) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildRenameRun(DataRuntime, PartitionTable) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
buildRenameRun(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改列名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, Tag) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改标签名 不支持
buildRenameRun(DataRuntime, PrimaryKey) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改主键名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, ForeignKey) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改外键名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, Index) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改索引名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, Constraint) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改约束名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, Trigger) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改触发器名 一般不直接调用,如果需要由buildAlterRun内部统一调用
buildRenameRun(DataRuntime, Procedure) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改存储过程名 不支持
buildRenameRun(DataRuntime, Function) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
修改函数名 一般不直接调用,如果需要由buildAlterRun内部统一调用

C

charset(DataRuntime, StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
编码
checkColumnExists(DataRuntime, StringBuilder, boolean) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
创建或删除列时检测是否存在
checkIgnorePrecision(DataRuntime, String) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
checkIgnoreScale(DataRuntime, String) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
checkSchema(DataRuntime, Connection, Table) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
checkSchema(DataRuntime, DataSource, Table) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
checkTableExists(DataRuntime, StringBuilder, boolean) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
checkTagExists(DataRuntime, StringBuilder, boolean) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
创建或删除标签时检测是否存在
checkViewExists(DataRuntime, StringBuilder, boolean) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
创建或删除视图时检测视图是否存在
columns(DataRuntime, int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
根据查询结果集构造Tag
columns(DataRuntime, boolean, LinkedHashMap<String, T>, Table, SqlRowSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
columns(DataRuntime, boolean, LinkedHashMap<String, T>, Table, String) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
comment(DataRuntime, StringBuilder, Table) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
备注
comment(DataRuntime, StringBuilder, View) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
备注 不支持创建视图时带备注的 在子视图中忽略
comment(DataRuntime, StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
备注
comment(DataRuntime, StringBuilder, Index) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
索引备注
concat(DataRuntime, String...) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
constraints(DataRuntime, int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
根据查询结果集构造Constraint
constraints(DataRuntime, boolean, Table, LinkedHashMap<String, T>, SqlRowSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
constraints(DataRuntime, boolean, Table, LinkedHashMap<String, T>, ResultSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
createConditionFindInSet(DataRuntime, StringBuilder, String, Compare, Object) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
构造 FIND_IN_SET 查询条件 如果不需要占位符 返回null 否则原样返回value

D

databases(DataRuntime, int, boolean, LinkedHashMap<String, Database>, DataSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
根据查询结果集构造 Database
ddl(DataRuntime, int, Table, List<String>, DataSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询表DDL
ddl(DataRuntime, int, View, List<String>, DataSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
查询 view DDL
defaultValue(DataRuntime, StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
默认值
define(DataRuntime, StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
定义列

E

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

F

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

G

generatedKey() - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 

H

HiveAdapter - org.anyline.data.jdbc.hive中的类
 
HiveAdapter() - 类 的构造器org.anyline.data.jdbc.hive.HiveAdapter
 
HiveColumnTypeAlias - org.anyline.data.jdbc.hive中的枚举
 
HiveReader - org.anyline.data.jdbc.hive中的枚举
 
HiveWriter - org.anyline.data.jdbc.hive中的枚举
 

I

increment(DataRuntime, StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
递增列
indexs(DataRuntime, int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
indexs(DataRuntime, boolean, Table, LinkedHashMap<String, T>, SqlRowSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
indexs(DataRuntime, boolean, LinkedHashMap<String, T>, Table, boolean, boolean) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
isBooleanColumn(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
isCharColumn(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
isIgnorePrecision(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
isIgnoreScale(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
isNumberColumn(DataRuntime, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
是否同数字

M

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

N

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

O

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

P

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

R

reader() - 枚举 中的方法org.anyline.data.jdbc.hive.HiveReader
 

S

standard() - 枚举 中的方法org.anyline.data.jdbc.hive.HiveColumnTypeAlias
 
supports() - 枚举 中的方法org.anyline.data.jdbc.hive.HiveReader
 
supports() - 枚举 中的方法org.anyline.data.jdbc.hive.HiveWriter
 

T

tables(DataRuntime, int, boolean, String, String, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
根据查询结构解析表属性
tables(DataRuntime, int, boolean, String, String, List<T>, DataSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
tables(DataRuntime, boolean, LinkedHashMap<String, T>, String, String, String, String...) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
tables(DataRuntime, boolean, List<T>, String, String, String, String...) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
tags(DataRuntime, int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
不支持 根据查询结果集构造Tag
tags(DataRuntime, boolean, Table, LinkedHashMap<String, T>, SqlRowSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
tags(DataRuntime, boolean, LinkedHashMap<String, T>, Table, String) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
triggers(DataRuntime, int, boolean, Table, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
根据查询结果集构造Constraint
type() - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
type(DataRuntime, StringBuilder, Column) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
数据类型

V

value(DataRuntime, Column, DriverAdapter.SQL_BUILD_IN_VALUE) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
内置函数
valueOf(String) - 枚举 中的静态方法org.anyline.data.jdbc.hive.HiveColumnTypeAlias
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法org.anyline.data.jdbc.hive.HiveReader
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法org.anyline.data.jdbc.hive.HiveWriter
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法org.anyline.data.jdbc.hive.HiveColumnTypeAlias
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法org.anyline.data.jdbc.hive.HiveReader
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法org.anyline.data.jdbc.hive.HiveWriter
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
views(DataRuntime, int, boolean, String, String, LinkedHashMap<String, T>, DataSet) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 
views(DataRuntime, boolean, LinkedHashMap<String, T>, String, String, String, String...) - 类 中的方法org.anyline.data.jdbc.hive.HiveAdapter
 

W

writer() - 枚举 中的方法org.anyline.data.jdbc.hive.HiveWriter
 
A B C D E F G H I M N O P R S T V W 
跳过导航链接

Copyright © 2023. All rights reserved.