X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fgabordemooij%2Fredbean%2FRedBeanPHP%2FDriver.php;fp=vendor%2Fgabordemooij%2Fredbean%2FRedBeanPHP%2FDriver.php;h=0000000000000000000000000000000000000000;hp=befd7b1eacdf5fcfc2698a7c951557fceb8a91b0;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/vendor/gabordemooij/redbean/RedBeanPHP/Driver.php b/vendor/gabordemooij/redbean/RedBeanPHP/Driver.php deleted file mode 100755 index befd7b1ea..000000000 --- a/vendor/gabordemooij/redbean/RedBeanPHP/Driver.php +++ /dev/null @@ -1,164 +0,0 @@ -123) will bind the integer 123 to the key :key in the - * SQL. This method has no return value. - * - * @param string $sql SQL query to execute - * @param array $bindings list of values to bind to SQL snippet - * - * @return array Affected Rows - */ - public function Execute( $sql, $bindings = array() ); - - /** - * Returns the latest insert ID if driver does support this - * feature. - * - * @return integer - */ - public function GetInsertID(); - - /** - * Returns the number of rows affected by the most recent query - * if the currently selected driver driver supports this feature. - * - * @return integer - */ - public function Affected_Rows(); - - /** - * Returns a cursor-like object from the database. - * - * @param string $sql SQL query to execute - * @param array $bindings list of values to bind to SQL snippet - * - * @return mixed - */ - public function GetCursor( $sql, $bindings = array() ); - - /** - * Toggles debug mode. In debug mode the driver will print all - * SQL to the screen together with some information about the - * results. All SQL code that passes through the driver will be - * passes on to the screen for inspection. - * This method has no return value. - * - * @param boolean $tf TRUE = debug mode ON - * @param Logger $customLogger - * - * @return void - */ - public function setDebugMode( $tf, $customLogger ); - - /** - * Starts a transaction. - * - * @return void - */ - public function CommitTrans(); - - /** - * Commits a transaction. - * - * @return void - */ - public function StartTrans(); - - /** - * Rolls back a transaction. - * - * @return void - */ - public function FailTrans(); - - /** - * Resets the internal Query Counter. - * - * @return self - */ - public function resetCounter(); - - /** - * Returns the number of SQL queries processed. - * - * @return integer - */ - public function getQueryCount(); -}