| Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
- running SED script
- manual adjustments for files not processed by regex
|
|
function, the query has already been closed
|
|
Documentation fix as requested in ADOdb/ADOdb/issues/117
|
|
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
|
|
With this, the mysql and mysqli (and derived) drivers convert the
recordset field names to the case defined by ADODB_ASSOC_CASE.
Fixes #100
|
|
|
|
MySQL and PostgreSQL used TRUE instead of ADODB_ASSOC_CASE.
|
|
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
|
|
|
|
|
|
|
|
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>
|
|
|
|
|
|
|
|
http://php.net/manual/en/language.basic-syntax.phptags.php
|
|
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.
|
|
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
|
|
- Move all files in adodb5/ to root
- Remove adodb-for-php4/ directory
|