TOS BD 3.0 OS: several (Unbutu, Mac Os and Windows) Neo4j 3.0
I'm trying to retrieve some data from NEO4j. The job is easy: Start Neo4j Connection => Neo4j Input => csv => close connection I'm working with TOS DI with JDBC's driver 3.0 and it works fine using the same workflow but with JDBC connectors.
Developpers are starting to work with TOS BD as they only work with Neo4j db. They have installed drivers for Neo4j as it is recommanded in TOS BD (drivers 2.3). It doesn't work due to the column name. The select is MATCH (n:dailyHistory) RETURN n.date LIMIT 25 The schema is
Colonne => retourdate Db column => date Type => String
Where did they do wrong ? Are the 2.3 Neo4j drivers compatible with 3.0 database ? Thanks for your feedback. Regards, Carlos
Here it is:
Exécution en erreur :Erreurs de compilation du Job
Au moins le Job "hopmedia_test_1" a des erreurs de compilation, réparez et réexportez.
Ligne en erreur: 801
Message détaillé: retourdate cannot be resolved to a variable
Il peut y avoir d'autres erreurs causées par la compatibilité avec la JVM. Vérifiez que les paramètres de votre JVM sont les mêmes que dans le studio.
In french sorry.
Hi, There is compile error in your job. When you get some compile errors, please check your "Code" tab in your job. There will be your compile error highlighted in red line. Best regards Sabrina
Hi,
It's a input problem.
If i change the query to
MATCH (n:dailyHistory) RETURN n.date AS toto
AND change the mapping creating column and parameter to "toto", it still doesn't work.
The error code is "toto cannot be resolved to a variable".
Regards,
Carlos
Thanks Sabrina for your reply.
Got a answer for my problem.
It was my fault because i had to write the return parameter with "".
Now i have another problem with drivers:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See
http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.