Releases: xp-framework/rdbms
Releases · xp-framework/rdbms
7.2.0: MySQLi > MySQL
7.1.0: XP7 compatibility
- Added version compatibility with XP 7 - @thekid
7.0.1: Shrink dependencies
- Dropped dependency on xp-framework/collections, which was only used
in one place inside the test suite!
(@thekid)
7.0.0: ResultSets
- Adopted semantic versioning. See xp-framework/rfc#300 - @thekid
- Implemented xp-framework/rfc#309: ResultSets. Heads up: The
query()
method now always returns ardbms.ResultSetinstance.
(@thekid)
6.7.1: AppVeyor
6.7.0: Integration tests
- Merged PR #14: Run MySQL, PostgreSQL and SQLite integration tests
(@thekid) - Removed deprecated and dysfunctional SQLite v2 driver
(@thekid) - Fixed SQL cast expression being shadowed by cast function in SQLite3
by renaming the latter tomarshal.
(@thekid) - Changed rdbms.DriverManager::getConnection() to accept DSN instances
as well as strings
(@thekid)
6.6.0: XP7 Forward compatibility
- Merged PR #11: Add support for 0x79 tokens - stored procedure return
status for Sybase and MSSQL userland drivers
(@kiesel, @thekid) - Heads up: Bumped XP version requirement to XP 6.11.0 - @thekid
- Added forward compatibility with XP 7.0 - @thekid
- Replaced deprecated util.HashmapIterator with a local class.
(@thekid)
6.5.5: File mode fixes
- Changed code base to no longer use deprecated FILE_MODE_* constants
(@thekid)
6.5.4: XP7 Forward compatibility
- Fix code to use
nameof()instead of the deprecatedgetClassName()
method from lang.Generic. See xp-framework/core#120
(@thekid)
6.5.3: Fix unbuffered MySQL queries
- Fixed unbuffered queries in
mysqlxdriver causing fatal errors - @thekid