neo4j-jdbc
neo4j-jdbc copied to clipboard
Official Neo4j JDBC Driver
Do we want to make the default database the home database if the database in the connection url is omitted, or provide no default and perhaps error if no database...
JDBC 4.3 Spec Chapter 11 "Connection Pooling"
The idea is to have an internal `Bookmarkmanager` similar to what SDN 6+ has: It shall do causal consistency by default and also can be disabled by a configurational flag...
- Neo4j-JDBC driver version (See `org.neo4j.driver.jdbc.ProductVersion`) - Add relevant Java version (such as JDK version, Vendor, Vendor version, i.e. see https://github.com/spring-projects/spring-data-neo4j/blob/52f6714940ee12a9120a625cebbd84dcf2e6251d/src/main/java/org/springframework/data/neo4j/core/support/UserAgent.java#L57-L65) Optional: Look into the environment and see if it's...
From sql2cypher created by [lukaseder](https://github.com/lukaseder): neo4j-contrib/sql2cypher#30 Various DML statements can be translated, including: - [ ] `INSERT`: https://neo4j.com/docs/cypher-manual/current/clauses/create/ - [x] `INSERT .. VALUES`: `CREATE (n:Type { ... })` syntax -...
From sql2cypher created by [lukaseder](https://github.com/lukaseder): neo4j-contrib/sql2cypher#10 I'll implement more of the `expressions()` method, to support: ## Functions - [x] Arithmetic expressions - [x] https://neo4j.com/docs/cypher-manual/current/functions/mathematical-numeric/ - [x] https://neo4j.com/docs/cypher-manual/current/functions/mathematical-logarithmic/ - [x] https://neo4j.com/docs/cypher-manual/current/functions/mathematical-trigonometric/...
From sql2cypher created by [jexp](https://github.com/jexp): neo4j-contrib/sql2cypher#14 Conditional Operators / Predicates https://neo4j.com/docs/cypher-manual/current/clauses/where/#boolean-operations - [X] AND, OR - [X] Equals, Greater, Less Than - [x] Less Than Equal, Greater Than Equal (missing...
Implement some test / report that checks which jOOQ API / Cypher DSL API is already covered by tests
From sql2cypher created by [lukaseder](https://github.com/lukaseder): neo4j-contrib/sql2cypher#22 The jOOQ integration tests have some agents that run e.g. during the tests of the parser to make sure all (most) jOOQ API is...
From sql2cypher created by [lukaseder](https://github.com/lukaseder): neo4j-contrib/sql2cypher#23 It's probably not the top priority, but eventually, might be reasonable to think about integration tests, e.g. using testcontainers: https://www.testcontainers.org/modules/databases/neo4j/ For this, it might...