Skip to content

Commit 8d5b635

Browse files
authored
Update README.md
1 parent 71db8e9 commit 8d5b635

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace SQLToNeo4j
2020
{
2121
static void Main(string[] args)
2222
{
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;"))
2424
{
2525
reader.GetNodes();
2626
reader.GetEdges();
@@ -30,7 +30,7 @@ namespace SQLToNeo4j
3030
//reader.GetExistenceConstraints(); -- available only in enterprise edition
3131
//reader.GetNodeKeyConstraints(); -- available only in enterprise edition
3232
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")))
3434
{
3535
importer.ImportNodes(reader.Nodes);
3636
importer.ImportEdges(reader.Edges);

0 commit comments

Comments
 (0)