registerTable method

void registerTable(
  1. Table table
)

Registers the table, which means that it can later be used in sql statements.

Implementation

void registerTable(Table table) {
  registerResultSet(table);
}