->select()
Selects all records in a table, or a specific record, from the database.
Method Syntax$db->select(thing)
Arguments
Arguments | Description | ||
---|---|---|---|
thing | The table name or a |
Example usage
// Select all records from a table
$people = $db->select('person');
// Select a specific record from a table
$person = $db->select(new RecordId('person', 'h5wxrf2ewk8xjxosxtyc'));
$person = $db->select(new StringRecordId('person:h5wxrf2ewk8xjxosxtyc'));
Translated query
This function will run the following query in the database.
SELECT * FROM $thing;