Giuseppe Villani
Giuseppe Villani
@jexp Can you try to append `&serverTimezone=UTC` to connection URL? The complete URL should be like `jdbc:mysql://localhost:3306/dbName?autoReconnect=true&useSSL=false&useCursorFetch=true&allowPublicKeyRetrivial=true&serverTimezone=UTC` .
The bug is due to the empty MySql password `--rdbms:password ""`
Currently, with the `terminationGuard` seems to work correctly
@kuczera With newer apoc versions, the load procedures already have a url encode under the hood. Effectively it is not clear from the documentation, we should add this note. However,...
@kuczera Maybe you're using a not updated version? Can you check your apoc version? Just execute `RETURN apoc.version()` and check that is `4.3.0.2`, otherwise can you try with this one?
@arthcras Recently we have decided to change the url handling, so that particular cases such as `"\n"` and white spaces can be handled by `apoc.text.urlencode`. Can you try your query...
> Can you try your query by changing `CALL apoc.load.jsonParams('https://query.wikidata.org/sparql?query=' + sparql,` with `CALL apoc.load.jsonParams('https://query.wikidata.org/sparql?query=' + apoc.text.urlencode(sparql),`? > > In case it doesn't work, can you provide your neo4j and...
@asportn Since with `Neo4j windows service`, the `sun.java.command` env used to locate the configuration folder is not set, it can be solved by setting the environment variable `NEO4J_CONF` with the...
@asportn I close the issue for now. If the solution provider doesn't work, please feel free to reopen it.
@benholmes-ft The `apoc.coll.sortMulti` is a function, not a procedure executable via `CALL proc.name()`, so doesn't appears in autocomplete. Instead, you can execute for example: ``` RETURN apoc.coll.sortMulti([{name:'foo'},{name:'bar',age:32},{name:'bar',age:42}], ['^name','age'],1,1) as maps...