SqliteFileAdapter<I extends Info, E extends Entry<I>> class

The SqliteFileAdapter provides a bridge between the store and the Sqlite file backend

Inheritance

Properties

dao → DaoAdapter<I, E>
Returns the DaoAdapter of the underlining SqliteDatabase
no setterinherited
file File
The database file
finalinherited
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

close() Future<void>
inherited
create(String name) Future<void>
Creates a partition
inherited
delete(String name) Future<void>
Deletes a partition
inherited
deleteAll() Future<void>
Deletes all partitions
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

build<I extends Info, E extends Entry<I>>(SqliteBuilder<I, E> builder, File file, {bool? logStatements, DatabaseSetup? setup, bool? cachePreparedStatements}) Future<SqliteAdapter<I, E>>
Builds SqliteFileAdapter.