TableOrViewOperations<Tbl extends HasResultSet, Row> class

A capture of a table and a generated database.

Table operations can be captured with DatabaseConnectionUser.from, which may make some common operations easier to write:

  • Use from(table).select() or from(table).selectOnly() instead of select(table) or selectOnly(table), respectively.
  • Use from(table).insert() instead of insert(table). You can also use from(table).insertOne, or TableOperations.insertOnConflictUpdate to insert rows directly.
  • Use from(table).update() instead of update(table). You can also use from(table).replace() to replace an existing row.
  • Use from(table).delete(), from(table).deleteOne() or from(table).deleteWhere to delete rows easily.
Available Extensions
Annotations
  • @sealed

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

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
select({bool distinct = false}) SimpleSelectStatement<Tbl, Row>
Composes a SELECT statement on the captured table or view.
selectOnly({bool distinct = false, bool includeJoinedTableColumns = true}) JoinedSelectStatement<Tbl, Row>
Composes a SELECT statement only selecting a subset of columns.
toString() String
A string representation of this object.
inherited

Operators

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