-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChdbJdbcTest.java
38 lines (28 loc) · 1.03 KB
/
ChdbJdbcTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import org.chdb.jdbc.memory.ArrowMemoryManger;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
import static org.junit.jupiter.api.Assertions.*;
public class ChdbJdbcTest {
// TODO failed to run by junit, it will crash
// Note: adding --add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED
public static void main(String[] args) throws Exception {
// Load the JDBC driver
Class.forName("org.chdb.jdbc.ChdbDriver");
// Establish the connection
Connection conn = DriverManager.getConnection("jdbc:chdb");
String query = "SELECT * from system.numbers limit 10";
// Execute the query
Statement st = conn.createStatement();
ResultSet rs = st.executeQuery(query);
while (rs.next()) {
// Retrieve data by column index
System.out.println("Column Value: " + rs.getString(1));
}
st.close();
rs.close();
conn.close();
assertEquals(0, ArrowMemoryManger.ROOT_ALLOCATOR.getAllocatedMemory());
}
}