EmptyStore class

Implemented types

Constructors

EmptyStore()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
schemaVersion Future<int>
no setteroverride

Methods

addColumn(SchemaTable table, SchemaColumn column, {String? unencodedInitialValue}) List<String>
override
addIndexToColumn(SchemaTable table, SchemaColumn column) List<String>
override
addTableUniqueColumnSet(SchemaTable table) List<String>
override
alterColumnDefaultValue(SchemaTable table, SchemaColumn column) List<String>
override
alterColumnDeleteRule(SchemaTable table, SchemaColumn column) List<String>
override
alterColumnNullability(SchemaTable table, SchemaColumn column, String? unencodedInitialValue) List<String>
override
alterColumnUniqueness(SchemaTable table, SchemaColumn column) List<String>
override
close() Future
Closes the underlying database connection.
override
createTable(SchemaTable table, {bool isTemporary = false}) List<String>
override
deleteColumn(SchemaTable table, SchemaColumn column) List<String>
override
deleteIndexFromColumn(SchemaTable table, SchemaColumn column) List<String>
override
deleteTable(SchemaTable table) List<String>
override
deleteTableUniqueColumnSet(SchemaTable table) List<String>
override
execute(String sql, {Map<String, dynamic>? substitutionValues}) Future
Executes an arbitrary command.
override
executeQuery(String formatString, Map<String, dynamic> values, int timeoutInSeconds, {PersistentStoreQueryReturnType? returnType}) Future
override
newQuery<T extends ManagedObject>(ManagedContext context, ManagedEntity entity, {T? values}) Query<T>
Creates a new database-specific Query.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
renameColumn(SchemaTable table, SchemaColumn column, String name) List<String>
override
renameIndex(SchemaTable table, SchemaColumn column, String newIndexName) List<String>
override
renameTable(SchemaTable table, String name) List<String>
override
toString() String
A string representation of this object.
inherited
transaction<T>(ManagedContext transactionContext, Future<T?> transactionBlock(ManagedContext transaction)) Future<T?>
override
upgrade(Schema fromSchema, List<Migration> withMigrations, {bool temporary = false}) Future<Schema?>
override

Operators

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