File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ namespace SQLToNeo4j
20
20
{
21
21
static void Main (string [] args )
22
22
{
23
- using (SQLReader reader = new SQLReader (" Server=DESKTOP-KCL006K \\ DATASERVER ;Database=GraphPL ;Trusted_Connection=yes;" ))
23
+ using (SQLReader reader = new SQLReader (" Server=<server name> \\ <instance name> ;Database=<database name> ;Trusted_Connection=yes;" ))
24
24
{
25
25
reader .GetNodes ();
26
26
reader .GetEdges ();
@@ -30,7 +30,7 @@ namespace SQLToNeo4j
30
30
// reader.GetExistenceConstraints(); -- available only in enterprise edition
31
31
// reader.GetNodeKeyConstraints(); -- available only in enterprise edition
32
32
33
- using (Neo4jWriter importer = new Neo4jWriter (new Uri (" http://neo4j:123 @localhost:7474" )))
33
+ using (Neo4jWriter importer = new Neo4jWriter (new Uri (" http://neo4j:neo4j @localhost:7474" )))
34
34
{
35
35
importer .ImportNodes (reader .Nodes );
36
36
importer .ImportEdges (reader .Edges );
You can’t perform that action at this time.
0 commit comments