public setReservedWords(array $words): void
Parameter | Type | Description |
---|
$words | array | |
public create(string $name, string $type, bool $ifNotExists): string
Parameter | Type | Description |
---|
$name | string | |
$type | string | |
$ifNotExists | bool | |
public insert(mixed $fields): self
Parameter | Type | Description |
---|
$fields | mixed | |
public update(array $fields): self
Parameter | Type | Description |
---|
$fields | array | |
public truncate(bool $cascade): self
Parameter | Type | Description |
---|
$cascade | bool | |
public exists(string $table, mixed $criteria): string
Parameter | Type | Description |
---|
$table | string | |
$criteria | mixed | |
public select(mixed $columns): self
Parameter | Type | Description |
---|
$columns | mixed | |
public distinct(string $columns): self
Parameter | Type | Description |
---|
$columns | string | |
public table(string $table, ?string $alias): self
Parameter | Type | Description |
---|
$table | string | |
$alias | string | |
public from(string $table, ?string $alias): self
Parameter | Type | Description |
---|
$table | string | |
$alias | string | |
public where(string $criteria): self
Parameter | Type | Description |
---|
$criteria | string | |
public group(string $column): self
Parameter | Type | Description |
---|
$column | string | |
public having(string $columns): self
Parameter | Type | Description |
---|
$columns | string | |
public window(string $name, string $partitionBy, string $orderBy): self
Parameter | Type | Description |
---|
$name | string | |
$partitionBy | string | |
$orderBy | string | |
Join a table to the current query using the provided join criteria.
public join(string $references, string $on, ?string $alias, string $type = 'INNER'): self
Parameter | Type | Description |
---|
$references | string | |
$on | string | |
$alias | string | |
$type | string | |
public order(string $columns, int $sortDirection = 'SORT_ASC'): self
Parameter | Type | Description |
---|
$columns | string | |
$sortDirection | int | |
public limit(int $limit): self
Parameter | Type | Description |
---|
$limit | int | |
public offset(int $offset): self
Parameter | Type | Description |
---|
$offset | int | |
public toString(): string
public getSchemaName(): ?string
public parseSchemaName(string $tableName): void
Parameter | Type | Description |
---|
$tableName | string | |
public schemaName(string $tableName): string
Parameter | Type | Description |
---|
$tableName | string | |
public quoteSpecial(mixed $value): mixed
Parameter | Type | Description |
---|
$value | mixed | |
public field(string $string): string
Parameter | Type | Description |
---|
$string | string | |
public prepareFields(mixed $fields, array $exclude, array $tables): string
Parameter | Type | Description |
---|
$fields | mixed | |
$exclude | array | |
$tables | array | |
public prepareValue(string $key, mixed $value): mixed
Parameter | Type | Description |
---|
$key | string | |
$value | mixed | |
public prepareArrayAliases(array $array): void
Parameter | Type | Description |
---|
$array | array | |
public prepareCriteria(string $criteria, string $bindType = 'AND', string $tissue = '=', ?string $parentRef, bool $setKey = true): string
Parameter | Type | Description |
---|
$criteria | string | |
$bindType | string | |
$tissue | string | |
$parentRef | string | |
$setKey | bool | |
public getCriteriaValues(): void
public returning(mixed $columns): self
Parameter | Type | Description |
---|
$columns | mixed | |
public onConflict(string $target, bool $update): self
Parameter | Type | Description |
---|
$target | string | |
$update | bool | |
Generated by Hazaar API Doc Generator