summaryrefslogtreecommitdiff
path: root/drivers/adodb-mysqli.inc.php
AgeCommit message (Collapse)AuthorFilesLines
2015-12-08insert_id did not return correct value after executing stored procedureMark Newnham1-0/+7
2015-11-28Bump version to 5.21devDamien Regad1-1/+1
2015-11-28Bump version to 5.20.0v5.20.0Damien Regad1-1/+1
2015-11-26Adjust header comment blocksDamien Regad1-1/+3
- running SED script - manual adjustments for files not processed by regex
2015-11-14If the last action in a script before shutdown was a call to a meta ↵Mark Newnham1-1/+1
function, the query has already been closed
2015-08-13Documentation fixesMark Newnham1-1/+5
Documentation fix as requested in ADOdb/ADOdb/issues/117
2015-08-11Fix#139: Remove PHP 4 ConstructorsValentin Sheyretski1-5/+5
This is the original commit from @valioz, rebased on latest master Signed-off-by: Damien Regad <dregad@mantisbt.org> Conflicts: drivers/adodb-db2ora.inc.php drivers/adodb-mssqlpo.inc.php drivers/adodb-odbc_oracle.inc.php
2015-06-25MySQL drivers convert field names caseDamien Regad1-0/+1
With this, the mysql and mysqli (and derived) drivers convert the recordset field names to the case defined by ADODB_ASSOC_CASE. Fixes #100
2015-06-25Coding guidelines and whitespaceDamien Regad1-1/+2
2015-06-25Consistent GetRowAssoc() parameter default valueDamien Regad1-1/+1
MySQL and PostgreSQL used TRUE instead of ADODB_ASSOC_CASE.
2015-03-04Fix qstr() when called without an active connection.Damien Regad1-1/+3
mysqli_real_escape_string(), differs from mysql_real_escape_string(). The former requires a valid mysqli DB connection object, while the latter has a fallback mechanism which attempts to generate a connection when given NULL. When calling ADOConnection::qstr() without an active connection ($_connectionID == false), mysqli_real_escape_string() throws a warning and returns an empty string. Now, we fallback to pre-PHP 5 mechanism to quote the string when not connected. Fixes #79
2015-03-04PHPDoc, whitespaceDamien Regad1-14/+16
2014-09-09Work around minor differences in HHVM behavior for MySQL.MikeB1-2/+7
2014-09-09WhitespaceDamien Regad1-329/+315
2014-09-09mysqli: prevent race conditions when creating/dropping sequencesMikeB1-2/+2
Add IF EXISTS/IF NOT EXISTS to MySQL commands when creating/dropping sequence tables. This prevents race conditions that can be easily triggered in unit tests running in parallel. Fixes #28 Signed-off-by: Damien Regad <dregad@mantisbt.org>
2014-04-30Bump version to 5.20devDamien Regad1-1/+1
2014-04-23Bump version to 5.19v5.19Damien Regad1-1/+1
2014-04-20Fix outdated references to readme.htmDamien Regad1-1/+1
2014-02-24Remove closing php tagDamien Regad1-2/+0
http://php.net/manual/en/language.basic-syntax.phptags.php
2014-01-21Bump version to 5.19devDamien Regad1-1/+1
Bumped 'dev' version allows users who rely on source code downloaded from the git repository rather than an official release tarball to reliably determine that they are running a development version of the library.
2013-08-12mysql/mysqli: fix MetaTables filteringDamien Regad1-4/+19
The change in metaTablesSQL introduced in v5.15 broke the ability to filter tables using a mask. Thanks to Arnt Witteveen for reporting the issue [1] [1] http://phplens.com/lens/lensforum/msgs.php?id=19359
2013-08-05Reorg: ADOdb5 (master) branchDamien Regad1-0/+1269
- Move all files in adodb5/ to root - Remove adodb-for-php4/ directory