This repository has been archived by the owner on Mar 30, 2024. It is now read-only.
PostgreSQL 2.0.0 Beta 4
Pre-release
Pre-release
Changes:
- Moved all methods from
Database
toConnection
, leavingDatabase
to be a simple class containing all the information to connect to a database. - Updated
PostgreSQLError
and replaced all uses ofDatabaseError
with it. - Created method for performing multiple queries in one transaction, using a specific isolation level.
- Added option to the
listen
function to stop listening. - Prevented the
listen
function from crashing with a fatal error. Now an error is returned instead. - Refactored all binding code into a similar structure as Vapor MySQL.
- Implemented handling of
Date
, instead of parsing the date into a string. - Added unit tests for the new date type parsing.