应用编程接口

JDBC

注意: 目前的JDBC实现仅是为与第三方工具连接使用的。使用JDBC(尤其是执行插入语句时)无法提供高性能吞吐。 对于Java应用,我们推荐使用JAVA NATIVE APIJDBC (不推荐) - 图1 (opens new window)

依赖

  • JDK >= 1.8
  • Maven >= 3.6

安装方法

在根目录下执行下面的命令:

  1. mvn clean install -pl jdbc -am -Dmaven.test.skip=true

在MAVEN中使用 IoTDB JDBC

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.apache.iotdb</groupId>
  4. <artifactId>iotdb-jdbc</artifactId>
  5. <version>0.12.0</version>
  6. </dependency>
  7. </dependencies>

示例代码

本章提供了如何建立数据库连接、执行 SQL 和显示查询结果的示例。

要求您已经在工程中包含了数据库编程所需引入的包和 JDBC class.

注意:为了更快地插入,建议使用 executeBatch()

  1. import java.sql.*;
  2. import org.apache.iotdb.jdbc.IoTDBSQLException;
  3. public class JDBCExample {
  4. /**
  5. * Before executing a SQL statement with a Statement object, you need to create a Statement object using the createStatement() method of the Connection object.
  6. * After creating a Statement object, you can use its execute() method to execute a SQL statement
  7. * Finally, remember to close the 'statement' and 'connection' objects by using their close() method
  8. * For statements with query results, we can use the getResultSet() method of the Statement object to get the result set.
  9. */
  10. public static void main(String[] args) throws SQLException {
  11. Connection connection = getConnection();
  12. if (connection == null) {
  13. System.out.println("get connection defeat");
  14. return;
  15. }
  16. Statement statement = connection.createStatement();
  17. //Create storage group
  18. try {
  19. statement.execute("SET STORAGE GROUP TO root.demo");
  20. }catch (IoTDBSQLException e){
  21. System.out.println(e.getMessage());
  22. }
  23. //Show storage group
  24. statement.execute("SHOW STORAGE GROUP");
  25. outputResult(statement.getResultSet());
  26. //Create time series
  27. //Different data type has different encoding methods. Here use INT32 as an example
  28. try {
  29. statement.execute("CREATE TIMESERIES root.demo.s0 WITH DATATYPE=INT32,ENCODING=RLE;");
  30. }catch (IoTDBSQLException e){
  31. System.out.println(e.getMessage());
  32. }
  33. //Show time series
  34. statement.execute("SHOW TIMESERIES root.demo");
  35. outputResult(statement.getResultSet());
  36. //Show devices
  37. statement.execute("SHOW DEVICES");
  38. outputResult(statement.getResultSet());
  39. //Count time series
  40. statement.execute("COUNT TIMESERIES root");
  41. outputResult(statement.getResultSet());
  42. //Count nodes at the given level
  43. statement.execute("COUNT NODES root LEVEL=3");
  44. outputResult(statement.getResultSet());
  45. //Count timeseries group by each node at the given level
  46. statement.execute("COUNT TIMESERIES root GROUP BY LEVEL=3");
  47. outputResult(statement.getResultSet());
  48. //Execute insert statements in batch
  49. statement.addBatch("insert into root.demo(timestamp,s0) values(1,1);");
  50. statement.addBatch("insert into root.demo(timestamp,s0) values(1,1);");
  51. statement.addBatch("insert into root.demo(timestamp,s0) values(2,15);");
  52. statement.addBatch("insert into root.demo(timestamp,s0) values(2,17);");
  53. statement.addBatch("insert into root.demo(timestamp,s0) values(4,12);");
  54. statement.executeBatch();
  55. statement.clearBatch();
  56. //Full query statement
  57. String sql = "select * from root.demo";
  58. ResultSet resultSet = statement.executeQuery(sql);
  59. System.out.println("sql: " + sql);
  60. outputResult(resultSet);
  61. //Exact query statement
  62. sql = "select s0 from root.demo where time = 4;";
  63. resultSet= statement.executeQuery(sql);
  64. System.out.println("sql: " + sql);
  65. outputResult(resultSet);
  66. //Time range query
  67. sql = "select s0 from root.demo where time >= 2 and time < 5;";
  68. resultSet = statement.executeQuery(sql);
  69. System.out.println("sql: " + sql);
  70. outputResult(resultSet);
  71. //Aggregate query
  72. sql = "select count(s0) from root.demo;";
  73. resultSet = statement.executeQuery(sql);
  74. System.out.println("sql: " + sql);
  75. outputResult(resultSet);
  76. //Delete time series
  77. statement.execute("delete timeseries root.demo.s0");
  78. //close connection
  79. statement.close();
  80. connection.close();
  81. }
  82. public static Connection getConnection() {
  83. // JDBC driver name and database URL
  84. String driver = "org.apache.iotdb.jdbc.IoTDBDriver";
  85. String url = "jdbc:iotdb://127.0.0.1:6667/";
  86. // Database credentials
  87. String username = "root";
  88. String password = "root";
  89. Connection connection = null;
  90. try {
  91. Class.forName(driver);
  92. connection = DriverManager.getConnection(url, username, password);
  93. } catch (ClassNotFoundException e) {
  94. e.printStackTrace();
  95. } catch (SQLException e) {
  96. e.printStackTrace();
  97. }
  98. return connection;
  99. }
  100. /**
  101. * This is an example of outputting the results in the ResultSet
  102. */
  103. private static void outputResult(ResultSet resultSet) throws SQLException {
  104. if (resultSet != null) {
  105. System.out.println("--------------------------");
  106. final ResultSetMetaData metaData = resultSet.getMetaData();
  107. final int columnCount = metaData.getColumnCount();
  108. for (int i = 0; i < columnCount; i++) {
  109. System.out.print(metaData.getColumnLabel(i + 1) + " ");
  110. }
  111. System.out.println();
  112. while (resultSet.next()) {
  113. for (int i = 1; ; i++) {
  114. System.out.print(resultSet.getString(i));
  115. if (i < columnCount) {
  116. System.out.print(", ");
  117. } else {
  118. System.out.println();
  119. break;
  120. }
  121. }
  122. }
  123. System.out.println("--------------------------\n");
  124. }
  125. }
  126. }