Releases: xp-framework/rdbms
Releases · xp-framework/rdbms
7.3.5: Backports from 10.0.1
- Backported changes from 10.0.1
- Fix parse error
- MSSQL datetime4 handling is the same as Sybase, only datetime8 differs
- Add tests for datetime and datetime4 types
- Separate implementations for date time parsing for MSSQL & Sybase
- Try removing division by 300 for dates
12.0.1: SQLite connection fix
- Fixed SQLite driver reconnecting on every single query - @thekid
12.0.0: Remove singleton logger
- Heads up: Deprecated
rdbms.util
package - @thekid - Heads up: Remove
?log=
and?observer=
functionality from
connection strings; it required a singleton logger set up. Changed
rdbms.ProfilingObserver
and the implementations inrdbms.sybase
to use LogCategory instances instead of strings as constructor
arguments.
(@thekid) - Made compatible with
xp-framework/logging
version 9.0.0 - @thekid
11.0.0: New connection semantics
- Merged PR #46: Remove flags "unbuffered", "storeresult", "persistent"
and "newlink":- Unbuffered queries are run by using open() instead of query() and are
definitely not a per-connection flag - Persistent connections were dropped completely - they have caveats
regarding locks and transactions described in the PHP Manual here:
http://php.net/manual/en/features.persistent-connections.php - Creating new links is the default now, instantiating two DBConnection
instances and not creating a new connection seems counter-intuitive
(@thekid)
- Unbuffered queries are run by using open() instead of query() and are
- Merged PR #45: Default reconnect to 1 - @thekid
- Merged PR #47: Remove unused affectedRows() method - @thekid
- Merged PR #48: Remove deprecated classes - @thekid
10.2.0: Connection handling
10.1.0: PostgreSQL connection close handling
- Merged PR #43: Handle connection closed by admin as SQLConnectionClosedException
(@johannes85, @thekid)
10.0.2: MySQLi adapter fix
10.0.1: TDS data types fixes
10.0.0: XP9 Compatibility
9.0.8: Refactor typeof()
- Refactored code to use
typeof()
instead ofxp::typeOf()
, see
xp-framework/rfc#323
(@thekid)