| Age | Commit message (Collapse) | Author | Files | Lines |
|
These calls throw an error on PHP >= 7.2 "session_module_name(): Cannot
set 'user' save handler by ini_set() or session_module_name()".
They were previously silently ignored, but as per PHP documentation [1],
since PHP 7.2.0 it is explicitly forbidden to set the module name to
"user" so this commit removes the function calls from session-related
files.
Fixes #449
[1] http://php.net/session_module_name
Improved commit message.
Signed-off-by: Damien Regad <dregad@mantisbt.org>
|
|
When initializing a new connection with postgres or pgsql driver, ADOdb
currently defaults to using the postgres8 driver.
Postgres 8.4 lifecycle ended in 2014, and currently only versions >= 9.4
are supported, so it makes sense to change our default to connect using
the postgres9 driver instead of postgres8, even though they currently
only differ by driver name.
Fixes #474
|
|
Conflicts:
docs/changelog.md
|
|
|
|
|
|
|
|
# Conflicts:
# adodb-lib.inc.php
# adodb-time.inc.php
|
|
|
|
Commit 227ef66ee3ea7c6bc77969f1db6098d5a6da3ece addressed issue #462,
which had already been fixed in master branch under #435 (commit
0559e4b888c9627090defa00982bf9f275ab23b8).
Since there was a difference in the function's name case between the
2 branches, (`tables` vs `Tables`), this commit fixes that.
The tables() function was incompatible
# Conflicts:
# perf/perf-mysql.inc.php
|
|
The BindTimeStamp and adodb_getdate functions are susceptible to abuse, see #467. The new constant ADODB_FUTURE_DATE_CUTOFF_YEARS limits the future years. see the documentation http://adodb.org/dokuwiki/doku.php?id=v5:datetime:adodb_last_date_status for more information
|
|
The BindTimeStamp and adodb_getdate functions are susceptible to abuse, see #467. The new constant ADODB_FUTURE_DATE_CUTOFF_YEARS limits the future years. see the documentation http://adodb.org/dokuwiki/doku.php?id=v5:datetime:adodb_last_date_status for more information
|
|
Methods getMenu and getMenu3 throw E_NOTICE errors when ADODB_FETCH_MODE = ADODB_FETCH_ASSOC See #460. This enhancement adds support for this feature.
|
|
The getMenu and getMenu3 methods generate E_NOTICE errors when ADODB_FETCH_MODE is set to ADODB_FETCH_ASSOC See #460. This changes adds support for that.
|
|
Whilst this does introduce driver-specific code into the core
file, there are already numerous instances of that so not a
problem
thx to @ivanbogomoloff
|
|
Whilst this does introduce driver-specific code into the core
file, there are already numerous instances of that so not a
problem
thx to @ivanbogomoloff
|
|
Master was already fixed
|
|
Code missing from the _adodb_getupdatesql() method, added
|
|
- add Firebird and SQLite3 to intro
- fix function names in example
|
|
# Conflicts:
# adodb-time.inc.php
# docs/changelog.md
# drivers/adodb-mssql.inc.php
# drivers/adodb-mssqlnative.inc.php
# drivers/adodb-oci8po.inc.php
|
|
|
|
|
|
- dead php.weblogs.com -> adodb.org
- redirected adodb.sourceforge.net -> adodb.org
- Standardize "latest version" comments
- Use new friendly URL for Sourceforge tracker links
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SQL Server requires an alias when creating a count statement.
This true for Native Mode(mssqlnative), mssql and PDO drivers
|
|
SQL Server requires an alias when creating a count statement.
This true for Native Mode(mssqlnative), mssql and PDO drivers
|
|
in favor of booleans
see http://php.net/manual/en/migration72.deprecated.php#migration72.deprecated.assert-string-arg
|
|
Cleaning up a bit and improving the git history in relation to the
issue tracker, by adding a few merge commits:
- Merge 189c94c12cd82e627efb30f70815a473deb682d4 was done the other way
around (master into feature branch)
- An important feature (DB2 driver rewrite) was committed without a
reference in the issue tracker
- SSL for mysqli PR #416 was merged without a specific commit, and a
follow-up fix was added later; they are now grouped together
(592d9e52350d360adf792c7151061557b282a5b1)
- Added merge commit for mssql windows auth, with issue tracker ref
- Final merge of master branch to bring it all together
|
|
|
|
|
|
|
|
Align property name with the underlying mysqli_ssl_set() function's
parameter name.
Follow-up from b6f3e24312a507efea2da758660ca0c58b13de34 (#416).
|
|
Align property name with the underlying mysqli_ssl_set() function's parameter name.
Follow-up from b6f3e24312a507efea2da758660ca0c58b13de34 (#416).
|
|
|
|
1. Manage user id and password parameters so that Windows Authentication can be used to connect to a SQL Server database (see #353).
2. Per ADOdb standard, print a message if the connection fails because the PHP driver is not installed
|
|
native mode client, instead of the ODBC based one used previously. It
encompasses the following changes:
1. All of the missing data dictionary functions have been added.
2. Proper binding of parameters to queries.
3. Support for stored procedures.
4. Full support for specific table casing, via a new method, setTableCase().
5. Support for the setConnectionParameter() method, allowing use of
elements such as CURSOR and trustedcontext
6. Connections via both catalogued and uncatalogued connections.
7. Support for sequences
8. The option $uCaseTables is no longer supported
9. The performance monitor is currently out of operation due to changes
in the DB2 system tables
The driver has been tested on PHP version 7.1, and is not supported on
ADOdb versions less than 5.21
|
|
|
|
|
|
|
|
|
|
|
|
Added support for PDO MySQL drivers in the ADOdb file based session management feature
|
|
The file for commit had an extended character introduced, clean up before pull
|
|
If an invalid sql statement is passed to the function, a runtime
error is generated due to an undeclared variable
|