DatabaseFactory class abstract

Basic databases operations

Implementers
Available Extensions

Constructors

DatabaseFactory()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

databaseExists(String path) Future<bool>
Check if a database exists
deleteDatabase(String path) Future<void>
Delete a database if it exists
getDatabasesPath() Future<String>
Get the default databases location path.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
openDatabase(String path, {OpenDatabaseOptions? options}) Future<Database>
Open a database at path with the given OpenDatabaseOptionsoptions
readDatabaseBytes(String path) Future<Uint8List>
Read database bytes.
setDatabasesPath(String path) Future<void>
Set the default databases location path
toString() String
A string representation of this object.
inherited
writeDatabaseBytes(String path, Uint8List bytes) Future<void>
Write database bytes.

Operators

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