Stefan Armbruster

Results 14 comments of Stefan Armbruster

Maybe https://www.ibm.com/support/pages/ibm-datastage-jdbc-connector-test-connection-fails-orgpostgresqlutilpsqlexception helps? So please try ``` CALL apoc.load.jdbc('jdbc:postgresql://localhost:7474/mock?user=XXXX&password=XXXX&gssEncMode=disable', 'SELECT name FROM XXXX.state') YIELD row CREATE (n:States {name:row.name}) ```

So you basically want to have `PGGSSENCMODE=disable` as environment variable being set when Neo4j starts up, right? I've checked the startup scripts on Neo4j 4.1.1 for Linux - they export...

My answer above just validated that the *linux* start script exposes all config settings as env variables. Not sure about the windows start script. Alternatively you might also set a...

> For example here: https://www.aliexpress.com/item/1005003290274214.html?spm=a2g0o.productlist.main.47.480030f273bJsY&algo_pvid=aca58083-a120-45c0-930a-86a1b4863a81&algo_exp_id=aca58083-a120-45c0-930a-86a1b4863a81-23&pdp_npi=3%40dis%21EUR%212.63%212.6%21%21%21%21%21%402100bfe316816606154453289d0703%2112000025045805357%21sea%21DE%210&curPageLogUid=GYWOkT0S87c3 Do you think this one will work as well. It's a development board so it's easier to wire up: https://www.alibaba.com/product-detail/Ebyte-E49-900M20S-test-board-Wireless_1600776754494.html

MySQL is about to retire their query cache, see http://mysqlserverteam.com/mysql-8-0-retiring-support-for-the-query-cache/. Not sure if implementing a cache in apoc makes a lot of sense.

so a `apoc.run.cachedQuery(ttl, query, params)` would do?

This won't work, a read statement must conclude with a `RETURN`. Even if it would work `apoc.cache` would need to know for which query it should cache the results.

@evgerher I think the relevant stacktrace ist this one ```Caused by: java.lang.NoSuchFieldException: usr_paths at java.base/java.lang.Class.getDeclaredField(Class.java:2412) at org.rdkit.neo4j.bin.LibraryMover.addLibraryPath(LibraryMover.java:244) at org.rdkit.neo4j.bin.LibraryMover.createTempLibraryPath(LibraryMover.java:231) at org.rdkit.neo4j.bin.LibraryMover.resolveMissingLibraries(LibraryMover.java:61) ... 48 more```

There seems to be a known issue that changes done by TransactionEventHandlers are not visible in the result of the same transaction. Workaround is to query the node by its...

there is a known issue in Neo4j 2.1.x regarding transaction event handler - which neo4j-uuid heavily relies on. AFAIK this is already fixed in Neo4j master branch (which will be...