-
Notifications
You must be signed in to change notification settings - Fork 0
SQLite
virtualWinter edited this page Aug 31, 2025
·
1 revision
The storage-sqlite module provides a simple way to interact with a SQLite database.
// Initialize the SQLite connection
SQLite sqlite = new SQLite("mydatabase.db");
sqlite.init();
// Get a connection
Connection connection = sqlite.getConnection();
// ... perform operations with the connection
// Close the connection
sqlite.end();© 2025 CatMC Network