-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Weesli edited this page Jul 19, 2025
·
2 revisions
Welcome to the RozsDB-Lite wiki!
/*
* Starts a database in the specified file.
* If the file does not exist, it is created with the database name.
* If the file exists, it is opened.
* */
Database database = RozsDBLite.open(“name_of_database”, Path.of(“path/to/database”)); /*
* Get a table from the database
* If the table has not been initialized, it is created
*/
Table table = database.getTable(“name_of_table”);