Methods |
public
|
wrapArray(array $values): array
Wrap an array of values.
|
#
|
public
|
wrapTable(Expression|string $table): string
Wrap a table in keyword identifiers.
Wrap a table in keyword identifiers.
Overriden by
|
#
|
public
|
wrap(Expression|string $value, bool $prefixAlias = false): string
Wrap a value in keyword identifiers.
Wrap a value in keyword identifiers.
Overriden by
|
#
|
public
|
columnize(array $columns): string
Convert an array of column names into a delimited string.
Convert an array of column names into a delimited string.
|
#
|
public
|
parameterize(array $values): string
Create query parameter place-holders for an array.
Create query parameter place-holders for an array.
|
#
|
public
|
parameter(mixed $value): string
Get the appropriate query parameter place-holder for a value.
Get the appropriate query parameter place-holder for a value.
|
#
|
public
|
quoteString(string|array $value): string
Quote the given string literal.
Quote the given string literal.
|
#
|
public
|
isExpression(mixed $value): bool
Determine if the given value is a raw expression.
Determine if the given value is a raw expression.
|
#
|
public
|
getValue(Expression $expression): mixed
Get the value of a raw expression.
Get the value of a raw expression.
|
#
|
public
|
getDateFormat(): string
Get the format for database stored dates.
Get the format for database stored dates.
|
#
|
public
|
getTablePrefix(): string
Get the grammar's table prefix.
Get the grammar's table prefix.
|
#
|
public
|
setTablePrefix(string $prefix): $this
Set the grammar's table prefix.
Set the grammar's table prefix.
|
#
|