Searched refs:ATTR_TIMEOUT (Results 1 – 6 of 6) sorted by relevance
/PHP-8.3/ext/pdo_mysql/tests/ |
H A D | pdo_mysql___construct_options.phpt | 46 /* TODO Possible bug PDO::ATTR_TIMEOUT != MYSQLI_OPT_CONNECT_TIMEOUT*/ 47 PDO::ATTR_TIMEOUT => 'PDO::ATTR_TIMEOUT', 62 PDO::ATTR_TIMEOUT => false, 104 /* TODO: no way to check ATTR_TIMEOUT settings */ 105 if (!is_object($db = new PDO($dsn, $user, $pass, array(PDO::ATTR_TIMEOUT => 10)))) 106 printf("[006] ATTR_TIMEOUT should be accepted\n"); 108 if (!is_object($db = new PDO($dsn, $user, $pass, array(PDO::ATTR_TIMEOUT => PHP_INT_MAX)))) 109 printf("[007] ATTR_TIMEOUT should be accepted\n"); 111 if (!is_object($db = new PDO($dsn, $user, $pass, array(PDO::ATTR_TIMEOUT => -PHP_INT_MAX)))) 112 printf("[008] ATTR_TIMEOUT should be accepted\n");
|
H A D | pdo_mysql_class_constants.phpt | 63 MYSQLI_OPT_CONNECT_TIMEOUT != PDO::ATTR_TIMEOUT (integer) 65 ^ Potential BUG, PDO::ATTR_TIMEOUT is used in pdo_mysql_handle_factory
|
H A D | bug68371.phpt | 25 PDO::ATTR_TIMEOUT => array(null),
|
/PHP-8.3/ext/pdo_dblib/tests/ |
H A D | timeout.phpt | 19 $db->setAttribute(PDO::ATTR_TIMEOUT, 1); 45 $db = new PDO($dsn, $user, $pass, [PDO::ATTR_ERRMODE => PDO::ERRMODE_SILENT, PDO::ATTR_TIMEOUT => 1…
|
/PHP-8.3/ext/pdo/ |
H A D | pdo_dbh.stub.php | 196 public const ATTR_TIMEOUT = UNKNOWN; define in PDO
|
/PHP-8.3/ext/pdo_pgsql/tests/ |
H A D | bug68371.phpt | 27 PDO::ATTR_TIMEOUT => array(null),
|
Completed in 13 milliseconds