$_table
$_table :
Represents tabular data from any database backend.
q(string $query, array $vars = array()) : \Fubber\Db\TableSet
Interface for querying arbitrary date from various backends.
Table::q('SELECT nickname FROM User'); // All User rows, but we only fetch the nickname column.
Table::q('User'); // All User rows
| string | $query | |
| array | $vars |
Returns
allUnsafe() : \Fubber\Db\TableSet
Return an unfiltered TableSet - bypassing any security built into overriding the all()-method
loadUnsafe() : \Fubber\Db\Table
Load a single row as an instance of the given class. Bypass any filtering built into the all()-method.