| Age | Commit message (Collapse) | Author | Files | Lines |
|
Fixes #24
|
|
Fixes #32
|
|
There was a small mistake in the version matching regex introduced in
commit 30c21280a48680c079f825af6583793928d65cf5, causing the function to
trigger a system notice and only return 'V' instead of the actual
version number.
Fixes #16
|
|
|
|
|
|
Fixes #13
|
|
|
|
|
|
|
|
|
|
|
|
When using 'pgsql' or 'postgres', ADOdb now sets the class to postgres8
instead of postgres7.
This is justified by PostgreSQL's versioning policy [1], as all 7.x
releases are end-of-life since 2010 or before. 8.4 is still supported
until July 2014.
[1] http://www.postgresql.org/support/versioning/
|
|
The _insertid() method introduced in postgres9 driver really belongs in
postgres8, since OID field was actually removed in 8.1.
This commit creates new postgres8 classes, moves the method from the '9'
driver to the new ADODB_postgres8 class, and makes the '9' classes
inherit from postgres8 instead of postgres7.
|
|
|
|
|
|
|
|
The old regex in ADOConnection::Version only included the numeric part
of the ADOdb version number. Now the suffix (dev|[1-z]) is also
returned.
The regex in updateversion.py has been updated to match.
|
|
If the second column of the first row happens to be null, ADOdb returned
a one-based array rather than the expected zero-based one.
Resolved by using array_key_exists() instead of isset().
Fixes sourceforge bug #130
|
|
When ADOConnection->Execute is called with a single non-array parameter
that evaluates to false, it ignores the parameter.
Fixed by doing a strict-type comparison. Note that single boolean "false"
parameter needs to be passed in as array(false).
Reported by Alejandro Vásquez
Fixes sourceforge patch #32
|
|
|
|
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.
|
|
|
|
As suggested by user 'Harmony' in [1].
This fixes erroneous behavior when using ADODB_FETCH_ASSOC fetch mode
and a field's value is null, in which case it was not included in the
result set.
[1] http://phplens.com/lens/lensforum/msgs.php?id=17539
|
|
- Move all files in adodb5/ to root
- Remove adodb-for-php4/ directory
|