Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Apache IoTDB?如何在 JDBC 或 Session 中设置 fetchSize。
在 Session 中,Query 的 fetchSize 可以在构造函数或 setter 中设置。
使用 JDBC 时,用户可以通过 Statement 设置 fetchSize。
有一些例子:
//set JDBC fetchSize statement.setFetchSize(10000); //set session fetchSize session.setFetchSize(10000)