LQB.table constructor

LQB.table(
  1. String tableName
)

Implementation

LQB.table(String tableName) {
  this._db = LqDBM.instance().getDB();
  if (this._db == null) {
    throw Exception('Cannot instantiate Loquacious Query Builder before Database initialization');
  }
  this._table = this._parseTableAndAlias(tableName);
}