all()
all() : array<string,mixed>[]
Fetch all rows matching the current query.
Returns
arrayReturns an array containing all rows in the database.
Abstract query builder class.
The AbstractQueryBuilder
class provides a foundation for building SQL queries
in an object-oriented manner. It supports various common SQL operations,
including SELECT, INSERT, UPDATE, and DELETE queries. *
insert(string[] $columns, array $values) : int|bool
Insert a row of data into the table specified in the query and return the number of affected rows.
string[] | $columns | Holds an array of columns. |
array | $values | Holds an array of values. |
Return the number of affected rows.
update(string[] $columns, array $values) : int|bool
Insert a row of data into the table specified in the query and return the number of affected rows.
string[] | $columns | Holds an array of columns. |
array | $values | Holds an array of values. |
Return the number of affected rows.