Thomas Rohwer

Results 4 comments of Thomas Rohwer

With the following program ```java import java.sql.*; public class Test { public static void main(String[] args) throws Exception { Class.forName("org.sqlite.JDBC"); String url= "jdbc:sqlite::memory:"; Connection c= DriverManager.getConnection(url); Statement s= c.createStatement(); s.execute("create...

The json_array implementation is not part of the JDBC driver. This is part of the json sqlite extension (see https://www.sqlite.org/json1.html). I am not 100% sure, what are trying to do,...

See pull request https://github.com/py4j/py4j/pull/517 .

Hello, I merged the main branch. Is it ok now?