Relational Database Interface
The DB Adapter module provides classes for access to relational database via PDO (PHP Data Object) drivers and classes. This approach allows developers to use these classes to access a range of different database servers.
PDO has supporting drivers for:
Access to database functions is all implemented using a common class structure. This allows developers to create database queries in code without consideration for the underlying SQL. SQL is generated "under the hood" using a database specific driver that will automatically take care of any differences in the database servers SQL implementation.
$db = Hazaar\DBI\Adapter::getInstance();
$result = $this->execute('SELECT * FROM users');
while($row = $result->fetch()){
//Do things with $row here
}
public array $defaultConfig = array (
'encrypt' =>
array (
'cipher' => 'aes-256-ctr',
'checkstring' => '!!',
),
)
private array $loadedConfigs
private Manager $schemaManager
private array $managerInstances
private string $env = 'APPLICATION_ENV'
Hazaar DBI Constructor.
public __construct(string $config): void
Parameter | Type | Description |
---|
$config | string | An array of configuration options to instantiate the DBI Adapter. This can also be a Hazaar configuration environment if DBI is being used by a Hazaar application. |
Magic method to pass any undefined methods to the driver.
public __call(string $method, array $args): mixed
This allows the DBI Adapter to be used as a proxy to the underlying driver.
Parameter | Type | Description |
---|
$method | string | The method name to call |
$args | array | The arguments to pass to the method |
Sets a callback function that can be used to process log messages as they are generated.
public registerLogHandler(\Closure $callback): void
The callback function provided must accept one argument. LogEvent $event
.
Example, to simply echo formatted log data:
'''php $manager->registerLogHandler(function(LogEvent $event){ echo $event->toString() . PHP_EOL; }); '''
Parameter | Type | Description |
---|
$callback | \Closure | The 'callable' callback function. See: is_callable(); |
public can(string $method): bool
Parameter | Type | Description |
---|
$method | string | |
public getDriverName(): string
Returns an instance of the Hazaar\DBI\Schema\Manager for managing database schema versions.
public getSchemaManager(?\Closure $logCallback): Manager
Parameter | Type | Description |
---|
$logCallback | \Closure | |
Return an existing or create a new instance of a DBI Adapter.
public getInstance(?string $configEnv = 'APPLICATION_ENV'): self
This function should be the main entrypoint to the DBI Adapter class as it implements instance tracking to reduce the number of individual connections to a database. Normally, instantiating a new DBI Adapter will create a new connection to the database, even if one already exists. This may be desired so this functionality still exists.
However, if using Hazaar\DBI\Adapter::getInstance()
you will be returned an existing instance if one exists allowing a single connection to be used from multiple sections of code, without the need to pass around an existing reference.
NOTE: Only the first instance created is tracked, so it is still possible to create multiple connections by instantiating the DBI Adapter directly. The choice is yours.
Parameter | Type | Description |
---|
$configEnv | string | |
Return an existing or create a new instance of a DBI Schema Manager;.
public getSchemaManagerInstance(?string $configEnv, ?callable $logCallback): Manager
Parameter | Type | Description |
---|
$configEnv | string | |
$logCallback | callable | |
public errorException(?string $msg): void
Parameter | Type | Description |
---|
$msg | string | |
Insert a new record into the specified table.
public insert(string $tableName, mixed $data, mixed $returning): mixed
Parameter | Type | Description |
---|
$tableName | string | the name of the table to insert the record into |
$data | mixed | The data to be inserted. This can be an associative array or an object. |
$returning | mixed | Optional. Whether to return the inserted record. Defaults to false. |
Update a record in the specified table.
public update(string $tableName, mixed $data, mixed $where, mixed $returning): int
Parameter | Type | Description |
---|
$tableName | string | the name of the table to update the record in |
$data | mixed | The data to be updated. This can be an associative array or an object. |
$where | mixed | The WHERE clause to apply to the update. This can be an associative array or an object. |
$returning | mixed | Optional. Whether to return the updated record. Defaults to false. |
Delete a record from the specified table.
public delete(string $tableName, mixed $where): int
Parameter | Type | Description |
---|
$tableName | string | the name of the table to delete the record from |
$where | mixed | The WHERE clause to apply to the delete. This can be an associative array or an object. |
Returns a Table object for the specified table name.
public table(string $tableName, ?string $alias): Table
Parameter | Type | Description |
---|
$tableName | string | the name of the table |
$alias | string | |
Returns a Query object for the specified table name.
public loadConfig(?string $configName): Config
Parameter | Type | Description |
---|
$configName | string | |
public listConstraints(NULL $table, NULL $type, boolean $invertType, false $): void
Parameter | Type | Description |
---|
$table | NULL | |
$type | NULL | |
$invertType | boolean | |
$ | false | |
public addConstraint(string $constraintName, array $info): bool
Parameter | Type | Description |
---|
$constraintName | string | |
$info | array | |
public dropConstraint(string $constraintName, string $tableName, bool $ifExists, bool $cascade): bool
Parameter | Type | Description |
---|
$constraintName | string | |
$tableName | string | |
$ifExists | bool | |
$cascade | bool | |
public listExtensions(): void
public extensionExists(string $name): bool
Parameter | Type | Description |
---|
$name | string | |
public createExtension(string $name): bool
Parameter | Type | Description |
---|
$name | string | |
public dropExtension(string $name, bool $ifExists): bool
Parameter | Type | Description |
---|
$name | string | |
$ifExists | bool | |
public listGroups(): void
public createGroup(string $groupName): bool
Parameter | Type | Description |
---|
$groupName | string | |
public dropGroup(string $groupName): bool
Parameter | Type | Description |
---|
$groupName | string | |
public addToGroup(string $roleName, string $parentRoleName): bool
Parameter | Type | Description |
---|
$roleName | string | |
$parentRoleName | string | |
public removeFromGroup(string $roleName, string $parentRoleName): bool
Parameter | Type | Description |
---|
$roleName | string | |
$parentRoleName | string | |
public listIndexes(?string $tableName): void
Parameter | Type | Description |
---|
$tableName | string | |
public indexExists(string $indexName, ?string $tableName): bool
Parameter | Type | Description |
---|
$indexName | string | |
$tableName | string | |
public createIndex(string $indexName, string $tableName, mixed $idxInfo): bool
Parameter | Type | Description |
---|
$indexName | string | |
$tableName | string | |
$idxInfo | mixed | |
public dropIndex(string $indexName, bool $ifExists): bool
Parameter | Type | Description |
---|
$indexName | string | |
$ifExists | bool | |
public getSchemaName(): string
public schemaExists(?string $schemaName): bool
Parameter | Type | Description |
---|
$schemaName | string | |
public createSchema(?string $schemaName): bool
Parameter | Type | Description |
---|
$schemaName | string | |
public listSequences(): void
public sequenceExists(string $sequenceName): bool
Parameter | Type | Description |
---|
$sequenceName | string | |
public describeSequence(string $name, false $): void
Parameter | Type | Description |
---|
$name | string | |
$ | false | |
public createSequence(string $name, array $sequenceInfo, bool $ifNotExists): bool
Parameter | Type | Description |
---|
$name | string | |
$sequenceInfo | array | |
$ifNotExists | bool | |
public dropSequence(string $name, bool $ifExists): bool
Parameter | Type | Description |
---|
$name | string | |
$ifExists | bool | |
public nextSequenceValue(string $name): int
Parameter | Type | Description |
---|
$name | string | |
public setSequenceValue(string $name, int $value): bool
Parameter | Type | Description |
---|
$name | string | |
$value | int | |
public createDatabase(string $name): bool
Parameter | Type | Description |
---|
$name | string | |
public exec(string $sql): int
Parameter | Type | Description |
---|
$sql | string | |
public query(string $sql): Result
Parameter | Type | Description |
---|
$sql | string | |
public quote(mixed $string, int $type = '\PDO::PARAM_STR'): string
Parameter | Type | Description |
---|
$string | mixed | |
$type | int | |
public setTimezone(string $tz): bool
Parameter | Type | Description |
---|
$tz | string | |
public errorInfo(false $): void
Parameter | Type | Description |
---|
$ | false | |
public errorCode(): string
public getQueryBuilder(): QueryBuilderInterface
public lastQueryString(): string
public listFunctions(bool $includeParameters): void
Parameter | Type | Description |
---|
$includeParameters | bool | |
public functionExists(string $functionName, ?string $argTypes): bool
Parameter | Type | Description |
---|
$functionName | string | |
$argTypes | string | |
public describeFunction(string $name, false $): void
Parameter | Type | Description |
---|
$name | string | |
$ | false | |
public createFunction(string $name, mixed $spec, bool $replace): bool
Parameter | Type | Description |
---|
$name | string | |
$spec | mixed | |
$replace | bool | |
public dropFunction(string $name, string $argTypes, bool $cascade, bool $ifExists): bool
Parameter | Type | Description |
---|
$name | string | |
$argTypes | string | |
$cascade | bool | |
$ifExists | bool | |
public listTables(): void
public tableExists(string $tableName): bool
Parameter | Type | Description |
---|
$tableName | string | |
public createTable(string $tableName, mixed $columns): bool
Parameter | Type | Description |
---|
$tableName | string | |
$columns | mixed | |
public describeTable(string $tableName, ?string $sort, false $): void
Parameter | Type | Description |
---|
$tableName | string | |
$sort | string | |
$ | false | |
public renameTable(string $fromName, string $toName): bool
Parameter | Type | Description |
---|
$fromName | string | |
$toName | string | |
public dropTable(string $name, bool $ifExists, bool $cascade): bool
Parameter | Type | Description |
---|
$name | string | |
$ifExists | bool | |
$cascade | bool | |
public addColumn(string $tableName, mixed $columnSpec): bool
Parameter | Type | Description |
---|
$tableName | string | |
$columnSpec | mixed | |
public alterColumn(string $tableName, string $column, mixed $columnSpec): bool
Parameter | Type | Description |
---|
$tableName | string | |
$column | string | |
$columnSpec | mixed | |
public dropColumn(string $tableName, string $column, bool $ifExists): bool
Parameter | Type | Description |
---|
$tableName | string | |
$column | string | |
$ifExists | bool | |
public truncate(string $tableName, bool $only, bool $restartIdentity, bool $cascade): bool
Parameter | Type | Description |
---|
$tableName | string | |
$only | bool | |
$restartIdentity | bool | |
$cascade | bool | |
public listTriggers(?string $tableName): void
Parameter | Type | Description |
---|
$tableName | string | |
public triggerExists(string $triggerName, string $tableName): bool
Parameter | Type | Description |
---|
$triggerName | string | |
$tableName | string | |
public describeTrigger(string $triggerName, false $): void
Parameter | Type | Description |
---|
$triggerName | string | |
$ | false | |
public createTrigger(string $triggerName, string $tableName, mixed $spec): bool
Parameter | Type | Description |
---|
$triggerName | string | |
$tableName | string | |
$spec | mixed | |
public dropTrigger(string $triggerName, string $tableName, bool $ifExists, bool $cascade): bool
Parameter | Type | Description |
---|
$triggerName | string | |
$tableName | string | |
$ifExists | bool | |
$cascade | bool | |
public createUser(string $name, ?string $password, array $privileges): bool
Parameter | Type | Description |
---|
$name | string | |
$password | string | |
$privileges | array | |
public dropUser(string $name, bool $ifExists): bool
Parameter | Type | Description |
---|
$name | string | |
$ifExists | bool | |
public grant(string $role, string $to, string $on): bool
Parameter | Type | Description |
---|
$role | string | |
$to | string | |
$on | string | |
public revoke(string $role, string $from, string $on): bool
Parameter | Type | Description |
---|
$role | string | |
$from | string | |
$on | string | |
public viewExists(string $viewName): bool
Parameter | Type | Description |
---|
$viewName | string | |
public describeView(string $name, false $): void
Parameter | Type | Description |
---|
$name | string | |
$ | false | |
public createView(string $name, mixed $content, bool $replace): bool
Parameter | Type | Description |
---|
$name | string | |
$content | mixed | |
$replace | bool | |
public dropView(string $name, bool $ifExists, bool $cascade): bool
Parameter | Type | Description |
---|
$name | string | |
$ifExists | bool | |
$cascade | bool | |
public prepareQuery(QueryBuilderInterface $queryBuilder): Statement
Parameter | Type | Description |
---|
$queryBuilder | QueryBuilderInterface | |
public prepare(string $sql): Statement
Parameter | Type | Description |
---|
$sql | string | |
Logs a message to the migration log.
public log(string $msg): void
Parameter | Type | Description |
---|
$msg | string | The message to log |
Returns the adapter event log.
public getEventLog(): void
private getDriverClass(string $driver): string
Parameter | Type | Description |
---|
$driver | string | |
private reconfigure(bool $reconnect): bool
Parameter | Type | Description |
---|
$reconnect | bool | |
Generated by Hazaar API Doc Generator