VauDB class

Constructors

VauDB({DynamicLibrary? library})

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

begin() → void
close() → void
commit() → void
createTable(String table, List<String> columns, {List<ForeignKeyDefinition> foreignKeys = const <ForeignKeyDefinition>[]}) → void
createTableWithForeignKeys(String table, List<String> columns, List<ForeignKeyDefinition> foreignKeys) → void
deleteKey(String key) bool
deleteRow(String table, int rowId) bool
get(String key) String?
insertRow(String table, List<String> values) int
lastError() String
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
open(String path) → void
put(String key, String value) → void
rollback() → void
selectAll(String table) VaudbTableRows
selectWhere(String table, String column, String value) VaudbTableRows
toString() String
A string representation of this object.
inherited
updateRow(String table, int rowId, List<String> values) bool

Operators

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