File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 4242
4343# -----------------------------------------------------------------------------# DB
4444"""
45- SimpleGraph. DB(file = ":memory")
45+ DB(file = ":memory")
4646
4747Create a graph database (in memory by default). Edge and node properties are saved in the database
4848as `TEXT` (see [https://www.sqlite.org/datatype3.html](https://www.sqlite.org/datatype3.html)) via `JSON3.write(props)`.
@@ -99,7 +99,7 @@ struct DB
9999 end
100100end
101101function Base. show (io:: IO , db:: DB )
102- print (io, " SimpleGraphDB (\" $(db. sqlitedb. file) \" ) ($(n_nodes (db)) nodes, $(n_edges (db)) edges)" )
102+ print (io, " SQLiteGraph.DB (\" $(db. sqlitedb. file) \" ) ($(n_nodes (db)) nodes, $(n_edges (db)) edges)" )
103103end
104104
105105execute (db:: DB , args... ; kw... ) = execute (db. sqlitedb, args... ; kw... )
You can’t perform that action at this time.
0 commit comments