Query/src/Drivers/DriverInterface.php

286 lines
6.1 KiB
PHP
Raw Normal View History

2016-10-12 22:12:25 -04:00
<?php declare(strict_types=1);
2014-04-22 14:02:54 -04:00
/**
* Query
*
2016-09-07 13:17:17 -04:00
* SQL Query Builder / Database Abstraction Layer
2014-04-22 14:02:54 -04:00
*
2020-04-10 20:54:31 -04:00
* PHP version 7.4
2016-09-07 13:17:17 -04:00
*
* @package Query
* @author Timothy J. Warren <tim@timshomepage.net>
2020-03-18 11:31:56 -04:00
* @copyright 2012 - 2020 Timothy J. Warren
2016-09-07 13:17:17 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2019-12-11 16:49:42 -05:00
* @link https://git.timshomepage.net/aviat/Query
* @version 3.0.0
2014-04-22 14:02:54 -04:00
*/
2016-09-07 17:39:19 -04:00
namespace Query\Drivers;
2014-04-22 14:02:54 -04:00
2019-12-10 12:17:40 -05:00
use InvalidArgumentException;
2019-12-11 16:49:06 -05:00
use PDO;
2018-01-24 13:14:03 -05:00
use PDOStatement;
2014-04-22 14:02:54 -04:00
/**
* PDO Interface to implement for database drivers
2019-12-11 16:49:06 -05:00
*
* @method beginTransaction(): bool
* @method commit(): bool
* @method errorCode(): string
* @method errorInfo(): array
* @method exec(string $statement): int
* @method getAttribute(int $attribute)
* @method inTransaction(): bool
* @method lastInsertId(string $name = NULL): string
* @method prepare(string $statement, array $driver_options = []): PDOStatement
* @method query(string $statement): PDOStatement
* @method quote(string $string, int $parameter_type = PDO::PARAM_STR): string
* @method rollback(): bool
* @method setAttribute(int $attribute, $value): bool
2014-04-22 14:02:54 -04:00
*/
2019-12-11 16:49:06 -05:00
interface DriverInterface /* extends the interface of PDO */ {
2014-04-22 14:02:54 -04:00
/**
* Constructor/Connection method
*
* @param string $dsn
* @param string $username
* @param string $password
2016-10-13 21:55:23 -04:00
* @param array $driverOptions
2014-04-22 14:02:54 -04:00
*/
2018-01-24 13:14:03 -05:00
public function __construct(string $dsn, string $username=NULL, string $password=NULL, array $driverOptions = []);
2014-04-22 14:02:54 -04:00
/**
* Simplifies prepared statements for database queries
*
* @param string $sql
* @param array $data
2019-12-10 12:17:40 -05:00
* @return PDOStatement|null
* @throws InvalidArgumentException
*/
public function prepareQuery(string $sql, array $data): PDOStatement;
2014-04-22 14:02:54 -04:00
/**
* Retrieve column information for the current database table
*
* @param string $table
* @return array
*/
2019-12-11 16:49:06 -05:00
public function getColumns(string $table): ?array;
2014-04-22 14:02:54 -04:00
/**
* Retrieve list of data types for the database
*
* @return array
*/
2018-01-24 13:14:03 -05:00
public function getTypes(): ?array;
/**
* Retrieve indexes for the table
*
* @param string $table
* @return array
*/
2019-12-11 16:49:06 -05:00
public function getIndexes(string $table): ?array;
2014-04-22 14:02:54 -04:00
/**
* Retrieve foreign keys for the table
*
* @param string $table
* @return array
*/
2019-12-11 16:49:06 -05:00
public function getFks(string $table): ?array;
2014-04-22 14:02:54 -04:00
/**
* Return list of tables for the current database
*
* @return array
*/
2018-01-24 13:14:03 -05:00
public function getTables(): ?array;
2014-04-22 14:02:54 -04:00
/**
* Retrieves an array of non-user-created tables for
* the connection/database
*
* @return array
*/
2018-01-24 13:14:03 -05:00
public function getSystemTables(): ?array;
2019-12-11 16:49:06 -05:00
/**
* Return schemas for databases that list them. Returns
* database list if schemas are databases for the current driver.
*
* @return array
*/
public function getSchemas(): ?array;
2014-04-24 13:42:01 -04:00
/**
* Return list of dbs for the current connection, if possible
*
* @return array
*/
2018-01-24 13:14:03 -05:00
public function getDbs(): ?array;
2014-04-24 13:42:01 -04:00
/**
* Return list of views for the current database
*
* @return array
*/
2018-01-24 13:14:03 -05:00
public function getViews(): ?array;
/**
* Return list of sequences for the current database, if they exist
*
* @return array
*/
2018-01-24 13:14:03 -05:00
public function getSequences(): ?array;
/**
* Return list of functions for the current database
*
* @return array
*/
2018-01-24 13:14:03 -05:00
public function getFunctions(): ?array;
/**
* Return list of stored procedures for the current database
*
* @return array
*/
2018-01-24 13:14:03 -05:00
public function getProcedures(): ?array;
/**
* Return list of triggers for the current database
*
* @return array
*/
2018-01-24 13:14:03 -05:00
public function getTriggers(): ?array;
2014-04-22 14:02:54 -04:00
/**
* Surrounds the string with the databases identifier escape characters
*
2015-07-30 13:13:12 -04:00
* @param string|array $ident
* @return string|array
2014-04-22 14:02:54 -04:00
*/
2016-10-13 21:55:23 -04:00
public function quoteIdent($ident);
2014-04-22 14:02:54 -04:00
/**
* Quote database table name, and set prefix
*
2020-04-23 18:16:32 -04:00
* @param string $table
* @return string
2014-04-22 14:02:54 -04:00
*/
2020-04-23 18:16:32 -04:00
public function quoteTable(string $table): string;
2014-04-22 14:02:54 -04:00
/**
* Create and execute a prepared statement with the provided parameters
*
* @param string $sql
* @param array $params
2018-01-24 13:14:03 -05:00
* @return PDOStatement
2014-04-22 14:02:54 -04:00
*/
public function prepareExecute(string $sql, array $params): PDOStatement;
2014-04-24 13:42:01 -04:00
/**
* Method to simplify retrieving db results for meta-data queries
*
* @param string|array|null $query
2016-10-13 21:55:23 -04:00
* @param bool $filteredIndex
2014-04-24 13:42:01 -04:00
* @return array
*/
2018-01-24 13:14:03 -05:00
public function driverQuery($query, $filteredIndex=TRUE): ?array;
/**
* Returns number of rows affected by an INSERT, UPDATE, DELETE type query
*
* @return int
*/
2018-01-24 13:14:03 -05:00
public function affectedRows(): int;
/**
* Return the number of rows returned for a SELECT query
* @see http://us3.php.net/manual/en/pdostatement.rowcount.php#87110
*
* @return int
*/
2018-01-24 13:14:03 -05:00
public function numRows(): ?int;
/**
* Prefixes a table if it is not already prefixed
*
* @param string $table
* @return string
*/
2018-01-24 13:14:03 -05:00
public function prefixTable(string $table): string;
/**
* Create sql for batch insert
*
* @param string $table
* @param array $data
* @return array
*/
2018-01-24 13:14:03 -05:00
public function insertBatch(string $table, array $data=[]): array;
2016-09-07 17:39:19 -04:00
/**
* Creates a batch update, and executes it.
* Returns the number of affected rows
*
* @param string $table
2018-01-26 08:39:30 -05:00
* @param array $data
2016-09-07 17:39:19 -04:00
* @param string $where
2018-01-26 08:39:30 -05:00
* @return array
2016-09-07 17:39:19 -04:00
*/
2018-01-26 08:39:30 -05:00
public function updateBatch(string $table, array $data, string $where): array;
2016-09-07 17:39:19 -04:00
2019-12-11 16:49:06 -05:00
/**
* Empty the passed table
*
* @param string $table
* @return PDOStatement
*/
public function truncate(string $table): PDOStatement;
2016-09-07 17:39:19 -04:00
/**
* Get the SQL class for the current driver
*
2016-10-13 21:55:23 -04:00
* @return SQLInterface
2016-09-07 17:39:19 -04:00
*/
2016-10-13 21:55:23 -04:00
public function getSql(): SQLInterface;
2016-09-07 17:39:19 -04:00
/**
* Get the Util class for the current driver
*
2016-10-12 22:12:25 -04:00
* @return AbstractUtil
2016-09-07 17:39:19 -04:00
*/
2016-10-13 21:55:23 -04:00
public function getUtil(): AbstractUtil;
2016-09-07 17:39:19 -04:00
/**
* Get the version of the database engine
*
* @return string
*/
public function getVersion(): string;
2019-12-11 16:49:06 -05:00
/**
* Get the last sql query executed
*
* @return string
*/
public function getLastQuery(): string;
2016-09-07 17:39:19 -04:00
/**
* Set the last query sql
*
2016-10-13 21:55:23 -04:00
* @param string $queryString
2016-09-07 17:39:19 -04:00
* @return void
*/
2018-01-24 13:14:03 -05:00
public function setLastQuery(string $queryString): void;
2019-12-11 16:49:06 -05:00
/**
* Set the common table name prefix
*
* @param string $prefix
* @return void
*/
public function setTablePrefix(string $prefix): void;
2019-12-10 12:17:40 -05:00
}