Releases: amphp/postgres
Releases · amphp/postgres
0.1.2
- Multiple operations may be initiated on the same
Connectionobject without errors. Operations are resolved in the order started. - The same SQL query may now be prepared multiple times on the same connection. Once prepared, subsequent prepares of the same statement use a single prepared statement on the server. Statements are automatically deallocated once no references remain to the
Statementobject. - Fixed deallocating statements after destruction of
PgSqlStatementobjects. - Fixed issue when preparing different statements where the first 63 characters were identical (#1).