DriverFactory
Platform-specific factory for creating SQLite database drivers. Each platform (Android, iOS, JVM) provides its own implementation.
Constructors
Functions
Creates a database driver from a direct file path. Opens the database directly without copying.
Creates a database driver from assets. Copies the database from assets to the app's database directory.
Creates a database driver from a direct file path. Opens the database directly without copying.
Creates a database driver from bundle. Copies the database from bundle to Application Support directory.
Creates a platform-specific SQLite database driver from a direct file path. No copying occurs - the database is opened directly from the provided path in read-only mode.
Creates a platform-specific SQLite database driver from assets/bundle. The database file will be copied from assets/bundle to a writable location.