table abstract method

QueryBuilder table(
  1. String name, [
  2. DatabaseExecutor? executor
])

Returns a QueryBuilder for the specified name (table).

If executor is provided, the builder will run queries through it (useful for transactions).

Implementation

QueryBuilder table(String name, [DatabaseExecutor? executor]);