Merge pull request #732 from BenMorel/patch-8

Add PDO::PGSQL_ATTR_DISABLE_PREPARES
This commit is contained in:
Artemy Pestretsov 2020-01-20 14:42:46 +03:00 committed by GitHub
commit 87d8c4a439
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -747,6 +747,11 @@ class PDO {
*/
const PGSQL_ASSOC = 1;
const PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT = 1000;
/**
* @since 5.6
*/
const PGSQL_ATTR_DISABLE_PREPARES = 1000;
const PGSQL_BAD_RESPONSE = 5;
const PGSQL_BOTH = 3;
const PGSQL_TRANSACTION_IDLE = 0;