Skip to content

WorkingWithSQLite

qruty edited this page Jun 11, 2024 · 1 revision

General

The connection and all the operations are handled using JDBC.

For example purpose, we added a test DB in this repository. By default WUDU is connected with it.

You can easily change the path of the DB in the provided code. (#TODO: make file selection ;) )

SQLite DB structure:

alt text

Foreign Keys:

  • vertices.graph_id -> graphs.id
  • edges.graph_id -> graphs.id

Operations - are described in queries.txt

Clone this wiki locally