Skip to content
virtualWinter edited this page Aug 31, 2025 · 1 revision

SQLite

The storage-sqlite module provides a simple way to interact with a SQLite database.

Usage

// 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();

Clone this wiki locally