agensgraph-jdbc
agensgraph-jdbc copied to clipboard
When i run the code below, it works ``` String sql = "match (x:meta_table {table_id: ?}),(y:meta_table),\n" + "path=allshortestpaths((x)-[:meta_table_lineage*1..1]->(y))\n" + "return path"; return jdbcTemplate.query(sql, ps -> { ps.setString(1, tableLineageInfo.getTableId()); }, new...
Attempting to test out agensgraph for a project so wrote a little stored function, and I am using kotlin to make the call. The call works fine, but I get...
I have a big table with 500 million data. Update the database with the following statement A: ` merge (n:rlnode ? ) merge (m:rlnode ?) merge (n)-[:knows ?]->(m);` B: `merge...
Hello, I'm writing a OGM Framwork for AgensGraph and when i use Optional Match with deep in relationship i get this error: `java.lang.ArrayIndexOutOfBoundsException: 2 at org.postgresql.jdbc.PgArray.buildArrayList(PgArray.java:442) at org.postgresql.jdbc.PgArray.getBaseTypeName(PgArray.java:779) at org.postgresql.jdbc.PgArray.getBaseType(PgArray.java:775)...
``` try(Connection connection = dataSource.getConnection()){ connection.setAutoCommit(false); try(PreparedStatement preparedStatement = connection .prepareStatement("create (t:TT{id:?}) return t.id as id")){ preparedStatement.setInt(1,22); try(ResultSet set = preparedStatement.executeQuery()){ if(set.next()){ System.out.println(set.getObject("id")); } } } try(PreparedStatement preparedStatement = connection...
Dear Contributor, Could you provide similar reactive client support for agensgraph? https://github.com/reactiverse/reactive-pg-client Regards, Pratik Parikh
Would you consider merging with impossibl/pgjdbc-ng as this driver supports new capabilities of PostgreSQL.. Or you think it is better to keep them separated? Otherwise cool stuff here! :1st_place_medal: