supports_placeholders  481 ext/pdo/pdo_sql_parser.c 	if (stmt->supports_placeholders == query_type && !stmt->named_rewrite_template) {
supports_placeholders  499 ext/pdo/pdo_sql_parser.c 	if (bindno && !params && stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) {
supports_placeholders  505 ext/pdo/pdo_sql_parser.c 	if (params && bindno != zend_hash_num_elements(params) && stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) {
supports_placeholders  525 ext/pdo/pdo_sql_parser.c 	if (stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) {
supports_placeholders  489 ext/pdo/pdo_stmt.c 	if (PDO_PLACEHOLDER_NONE == stmt->supports_placeholders) {
supports_placeholders 1736 ext/pdo/pdo_stmt.c 			RETVAL_BOOL(stmt->supports_placeholders == PDO_PLACEHOLDER_NONE);
supports_placeholders  569 ext/pdo/php_pdo_driver.h 	unsigned supports_placeholders:2;
supports_placeholders  103 ext/pdo_dblib/dblib_driver.c 	stmt->supports_placeholders = PDO_PLACEHOLDER_NONE;
supports_placeholders  196 ext/pdo_firebird/firebird_driver.c 		stmt->supports_placeholders = PDO_PLACEHOLDER_POSITIONAL;
supports_placeholders  187 ext/pdo_mysql/mysql_driver.c 	stmt->supports_placeholders = PDO_PLACEHOLDER_POSITIONAL;
supports_placeholders  247 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  270 ext/pdo_pgsql/pgsql_driver.c 		stmt->supports_placeholders = PDO_PLACEHOLDER_NAMED;
supports_placeholders  298 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;