You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A new row of data should be inserted into the target table, similar to the behavior without using apoc.periodic.repeat.
Actual Behavior (Mandatory)
Despite successfully testing the statement with apoc.cypher.doIt, applying apoc.periodic.repeat still results in failure and displays the following error message:
How to Reproduce the Problem
Simple Dataset (where it's possibile)
//Insert here a set of Cypher statements that helps us to reproduce the problem
call apoc.periodic.repeat(
'000. test',
'
with
"jdbc:mysql://[example_url]/data_mart" as jdbc,
"insert ignore into merchandise_id (id, source) values (\'1\', \'Example Data\');" as sql
call apoc.load.jdbcUpdate(
jdbc,
sql,
[],
{credentials: {user: "user", password: "password"}}
)
',
60*60
)
Steps (Mandatory)
Install the apoc procedure and the mysql-jdbc driver, then restart the Neo4j database.
Create a MySQL database and a table named merchandise_id with two columns: id (varchar) and source (varchar).
Insert example data using the previously written Cypher statement.
Expected Behavior (Mandatory)
A new row of data should be inserted into the target table, similar to the behavior without using apoc.periodic.repeat.
Actual Behavior (Mandatory)
Despite successfully testing the statement with apoc.cypher.doIt, applying apoc.periodic.repeat still results in failure and displays the following error message:
How to Reproduce the Problem
Simple Dataset (where it's possibile)
Steps (Mandatory)
Screenshots (where it's possibile)
Specifications (Mandatory)
Currently used versions
Versions
The text was updated successfully, but these errors were encountered: