summaryrefslogtreecommitdiff
path: root/drivers/adodb-postgres64.inc.php
AgeCommit message (Collapse)AuthorFilesLines
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-08-12postgres: Noblob optimizationmike.benoit1-1/+1
Saves one query for every connection when blobs arent being used. Fixes #112 Signed-off-by: Damien Regad <dregad@mantisbt.org>
2015-08-11Fix#139: Remove PHP 4 ConstructorsValentin Sheyretski1-1/+1
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-25Coding guidelines and whitespaceDamien Regad1-1/+3
2015-06-25Consistent GetRowAssoc() parameter default valueDamien Regad1-1/+1
MySQL and PostgreSQL used TRUE instead of ADODB_ASSOC_CASE.
2015-04-20Remove uncessary silencerMike Benoit1-1/+1
2015-04-20Use pg_query() instead of pg_exec()Mike Benoit1-17/+17
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.
2015-04-20Fix whitespace / commentsMike Benoit1-8/+9
Signed-off-by: Damien Regad <dregad@mantisbt.org> Mike's original commit was split into distinct elements.
2015-04-20Replace pg_cmdtuples() alias by pg_affected_rows()Damien Regad1-3/+1
2014-09-09pgsql: more occurences of legacy aliasesDamien Regad1-7/+7
2014-09-09pgsql: Stop using legacy function aliasesMikeB1-7/+7
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>
2014-05-12postgres7: fix system warning in MetaColumns() with schemaDamien Regad1-2/+16
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
2014-04-30WhitespaceDamien Regad1-1/+1
2014-04-30Bump version to 5.20devDamien Regad1-1/+1
2014-04-23Bump version to 5.19v5.19Damien Regad1-1/+1
2014-04-16postgres driver classes now use unified constructorDamien Regad1-3/+6
2014-02-24Fix ADODB_postgres64->Param()Damien Regad1-1/+6
The method now properly resets the parameter count to 1 when $name is false (or 0).
2014-02-24Remove closing php tagDamien Regad1-1/+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-31Impossible to retrieve BLOB from DB with PostgreSQL >= 9.0Damien Regad1-0/+9
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
2013-08-31Whitespace fixesDamien Regad1-100/+107
2013-08-05Reorg: ADOdb5 (master) branchDamien Regad1-0/+1078
- Move all files in adodb5/ to root - Remove adodb-for-php4/ directory