| Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
- running SED script
- manual adjustments for files not processed by regex
|
|
Saves one query for every connection when blobs arent being used.
Fixes #112
Signed-off-by: Damien Regad <dregad@mantisbt.org>
|
|
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
|
|
|
|
MySQL and PostgreSQL used TRUE instead of ADODB_ASSOC_CASE.
|
|
|
|
pg_exec() is a legacy alias for pg_query() [1]. Replace it when the
query is not prepared, or use pg_execute() when it is.
This fixes issues with HHVM v3.6.
[1] http://php.net/manual/en/function.pg-query.php
Signed-off-by: Damien Regad <dregad@mantisbt.org>
Mike's original commit was split into distinct elements.
|
|
Signed-off-by: Damien Regad <dregad@mantisbt.org>
Mike's original commit was split into distinct elements.
|
|
|
|
|
|
Use proper PostgreSQL function names rather than legacy aliases that
arent documented anymore. This should continue to work back to PHP v4.2
still, and also works with HHVM.
Signed-off-by: Damien Regad <dregad@mantisbt.org>
|
|
When calling MetaColumns with schema.table, the driver triggers a
'Warning: sprintf(): Too few arguments' because the metaColumnsSQL1
statement contains one more parameter in 7 compared to the 6.4 version.
Resolved by adding a new protected _generateMetaColumnsSQL() method to
handle the preparation of the appropriate SQL statement, and overriding
it in the postgres7 driver.
http://phplens.com/lens/lensforum/msgs.php?id=19481
|
|
|
|
|
|
|
|
|
|
The method now properly resets the parameter count to 1 when $name is
false (or 0).
|
|
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 new default 'hex' for bytea_output setting, causes PHP to
incorrectly process the column's contents. As recommended in [1], we set
bytea_output to 'escape' when connecting, to ensure this works
Fixes #4
[1] https://bugs.php.net/bug.php?id=59831
|
|
|
|
- Move all files in adodb5/ to root
- Remove adodb-for-php4/ directory
|