supports_placeholders  477 ext/pdo/pdo_sql_parser.c 	if (stmt->supports_placeholders == query_type && !stmt->named_rewrite_template) {
supports_placeholders  495 ext/pdo/pdo_sql_parser.c 	if (bindno && !params && stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) {
supports_placeholders  501 ext/pdo/pdo_sql_parser.c 	if (params && bindno != zend_hash_num_elements(params) && stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) {
supports_placeholders  521 ext/pdo/pdo_sql_parser.c 	if (stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) {
supports_placeholders  491 ext/pdo/pdo_stmt.c 	if (PDO_PLACEHOLDER_NONE == stmt->supports_placeholders) {
supports_placeholders 1756 ext/pdo/pdo_stmt.c 			RETVAL_BOOL(stmt->supports_placeholders == PDO_PLACEHOLDER_NONE);
supports_placeholders  571 ext/pdo/php_pdo_driver.h 	unsigned supports_placeholders:2;
supports_placeholders  102 ext/pdo_dblib/dblib_driver.c 	stmt->supports_placeholders = PDO_PLACEHOLDER_NONE;
supports_placeholders  198 ext/pdo_firebird/firebird_driver.c 		stmt->supports_placeholders = PDO_PLACEHOLDER_POSITIONAL;
supports_placeholders  189 ext/pdo_mysql/mysql_driver.c 	stmt->supports_placeholders = PDO_PLACEHOLDER_POSITIONAL;
supports_placeholders  249 ext/pdo_mysql/mysql_driver.c 	stmt->supports_placeholders = PDO_PLACEHOLDER_NONE;
supports_placeholders  269 ext/pdo_oci/oci_driver.c 	stmt->supports_placeholders = PDO_PLACEHOLDER_NAMED;
supports_placeholders  160 ext/pdo_odbc/odbc_driver.c 	stmt->supports_placeholders = PDO_PLACEHOLDER_POSITIONAL;
supports_placeholders  271 ext/pdo_pgsql/pgsql_driver.c 		stmt->supports_placeholders = PDO_PLACEHOLDER_NAMED;
supports_placeholders  299 ext/pdo_pgsql/pgsql_driver.c 	stmt->supports_placeholders = PDO_PLACEHOLDER_NONE;
supports_placeholders  207 ext/pdo_pgsql/pgsql_statement.c 	} else if (stmt->supports_placeholders == PDO_PLACEHOLDER_NAMED) {
supports_placeholders  247 ext/pdo_pgsql/pgsql_statement.c 	if (stmt->supports_placeholders == PDO_PLACEHOLDER_NAMED && param->is_param) {
supports_placeholders  188 ext/pdo_sqlite/sqlite_driver.c 	stmt->supports_placeholders = PDO_PLACEHOLDER_POSITIONAL|PDO_PLACEHOLDER_NAMED;