* @copyright 2012 - 2018 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat4ion/Query */ namespace Query\Drivers; /** * PDO Interface to implement for database drivers */ interface DriverInterface { /** * Constructor/Connection method * * @param string $dsn * @param string $username * @param string $password * @param array $driverOptions */ public function __construct($dsn, $username=NULL, $password=NULL, array $driverOptions = []); /** * Simplifies prepared statements for database queries * * @param string $sql * @param array $data * @return \PDOStatement | FALSE * @throws \InvalidArgumentException */ public function prepareQuery($sql, $data); /** * Retrieve column information for the current database table * * @param string $table * @return array */ public function getColumns($table); /** * Retrieve list of data types for the database * * @return array */ public function getTypes(); /** * Retrieve indexes for the table * * @param string $table * @return array */ public function getIndexes($table); /** * Retrieve foreign keys for the table * * @param string $table * @return array */ public function getFks($table); /** * Return list of tables for the current database * * @return array */ public function getTables(); /** * Retrieves an array of non-user-created tables for * the connection/database * * @return array */ public function getSystemTables(); /** * Return list of dbs for the current connection, if possible * * @return array */ public function getDbs(); /** * Return list of views for the current database * * @return array */ public function getViews(); /** * Return list of sequences for the current database, if they exist * * @return array */ public function getSequences(); /** * Return list of functions for the current database * * @return array */ public function getFunctions(); /** * Return list of stored procedures for the current database * * @return array */ public function getProcedures(); /** * Return list of triggers for the current database * * @return array */ public function getTriggers(); /** * Surrounds the string with the databases identifier escape characters * * @param string|array $ident * @return string|array */ public function quoteIdent($ident); /** * Quote database table name, and set prefix * * @param string|array $table * @return string|array */ public function quoteTable($table); /** * Create and execute a prepared statement with the provided parameters * * @param string $sql * @param array $params * @return \PDOStatement */ public function prepareExecute($sql, $params); /** * Method to simplify retrieving db results for meta-data queries * * @param string|array|null $query * @param bool $filteredIndex * @return array */ public function driverQuery($query, $filteredIndex=TRUE); /** * Returns number of rows affected by an INSERT, UPDATE, DELETE type query * * @return int */ public function affectedRows(); /** * Return the number of rows returned for a SELECT query * @see http://us3.php.net/manual/en/pdostatement.rowcount.php#87110 * * @return int */ public function numRows(); /** * Prefixes a table if it is not already prefixed * * @param string $table * @return string */ public function prefixTable($table); /** * Create sql for batch insert * * @param string $table * @param array $data * @return array */ public function insertBatch($table, $data=[]); /** * Creates a batch update, and executes it. * Returns the number of affected rows * * @param string $table * @param array|object $data * @param string $where * @return int|null */ public function updateBatch($table, $data, $where); /** * Get the SQL class for the current driver * * @return SQLInterface */ public function getSql(): SQLInterface; /** * Get the Util class for the current driver * * @return AbstractUtil */ public function getUtil(): AbstractUtil; /** * Set the last query sql * * @param string $queryString * @return void */ public function setLastQuery(string $queryString); }