You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Multiple operations may be initiated on the same Connection object 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 Statement object.
Fixed deallocating statements after destruction of PgSqlStatement objects.
Fixed issue when preparing different statements where the first 63 characters were identical (#1).