Skip to content

Commit

Permalink
update path
Browse files Browse the repository at this point in the history
  • Loading branch information
ray6080 committed Feb 13, 2023
1 parent 3cadc51 commit bed855d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ We take `tinysnb` as an example graph, which is under `dataset/demo-db/csv` in o
### CLI
#### Start CLI
```
./build/release/tools/shell/kuzu_shell -i "./test.db"
./build/release/tools/shell/kuzu_shell -i "./testdb"
```
#### Schema Definition
```cypher
Expand All @@ -71,7 +71,7 @@ kuzu> MATCH (a:User)-[f:Follows]->(b:User) RETURN a.name, b.name, f.since;
```python
import kuzu

db = kuzu.Database('./test.db')
db = kuzu.Database('./testdb')
conn = kuzu.Connection(db)
conn.execute("CREATE NODE TABLE User(name STRING, age INT64, PRIMARY KEY (name))")
conn.execute("CREATE REL TABLE Follows(FROM User TO User, since INT64)")
Expand Down

0 comments on commit bed855d

Please sign in to comment.