- ENABLE_ODPS_LOGGER_PROP_KEY - Static variable in class com.aliyun.odps.jdbc.utils.ConnectionResource
-
- enableLimit() - Method in class com.aliyun.odps.jdbc.OdpsConnection
-
- encodeBytes(byte[], String) - Static method in class com.aliyun.odps.jdbc.utils.transformer.to.jdbc.AbstractToJdbcTransformer
-
- encodeBytes(byte[], String) - Static method in class com.aliyun.odps.jdbc.utils.transformer.to.odps.AbstractToOdpsTransformer
-
- error(String) - Method in class com.aliyun.odps.jdbc.utils.OdpsLogger
-
- error(String, Throwable) - Method in class com.aliyun.odps.jdbc.utils.OdpsLogger
-
- execute() - Method in class com.aliyun.odps.jdbc.OdpsPreparedStatement
-
解析后通过SQLExecutor作为query执行
这种方式执行写入时间数据的时候,1900年前的时间可能会触发Java的时区问题,因此建议采用executeUpdate()方式
Java时区问题:https://programminghints.com/2017/05/still-using-java-util-date-dont/
https://stackoverflow.com/questions/41723123/java-timezone-what-transitions-mean
- execute(String, int) - Method in class com.aliyun.odps.jdbc.OdpsStatement
-
- execute(String) - Method in class com.aliyun.odps.jdbc.OdpsStatement
-
执行SQL
- execute(String, int[]) - Method in class com.aliyun.odps.jdbc.OdpsStatement
-
- execute(String, String[]) - Method in class com.aliyun.odps.jdbc.OdpsStatement
-
- EXECUTE_PROJECT_PROP_KEY - Static variable in class com.aliyun.odps.jdbc.utils.ConnectionResource
-
- executeBatch() - Method in class com.aliyun.odps.jdbc.OdpsPreparedStatement
-
Only support DML like `INSERT INTO table_name values (e, f, g)` in batch execution
- executeBatch() - Method in class com.aliyun.odps.jdbc.OdpsStatement
-
- executeQuery() - Method in class com.aliyun.odps.jdbc.OdpsPreparedStatement
-
解析后通过SQLExecutor作为query执行,同execute()
- executeQuery(String) - Method in class com.aliyun.odps.jdbc.OdpsStatement
-
- executeUpdate() - Method in class com.aliyun.odps.jdbc.OdpsPreparedStatement
-
解析后通过table tunnel执行,只支持insert命令
该方式采用java.time类型写入时间数据的时候,可以避免Java的时区问题
Java时区问题:https://programminghints.com/2017/05/still-using-java-util-date-dont/
https://stackoverflow.com/questions/41723123/java-timezone-what-transitions-mean
- executeUpdate(String) - Method in class com.aliyun.odps.jdbc.OdpsStatement
-
- executeUpdate(String, int) - Method in class com.aliyun.odps.jdbc.OdpsStatement
-
- executeUpdate(String, int[]) - Method in class com.aliyun.odps.jdbc.OdpsStatement
-
- executeUpdate(String, String[]) - Method in class com.aliyun.odps.jdbc.OdpsStatement
-