Home
last modified time | relevance | path

Searched refs:PDOStatement (Results 1 – 25 of 104) sorted by relevance

12345

/php-src/ext/pdo/
H A Dpdo_stmt_arginfo.h90 ZEND_METHOD(PDOStatement, bindColumn);
91 ZEND_METHOD(PDOStatement, bindParam);
92 ZEND_METHOD(PDOStatement, bindValue);
93 ZEND_METHOD(PDOStatement, closeCursor);
96 ZEND_METHOD(PDOStatement, errorCode);
97 ZEND_METHOD(PDOStatement, errorInfo);
98 ZEND_METHOD(PDOStatement, execute);
99 ZEND_METHOD(PDOStatement, fetch);
100 ZEND_METHOD(PDOStatement, fetchAll);
105 ZEND_METHOD(PDOStatement, nextRowset);
[all …]
/php-src/ext/pdo/tests/
H A Dbug_52098.phpt2 PDO Common: Bug #52098 Own PDOStatement implementation ignore __call()
21 class MyStatement extends PDOStatement
29 Test prepared statement with PDOStatement class.
38 Test regular statement with PDOStatement class.
47 Test object instance of PDOStatement class.
H A Dpdo_036.phpt2 Testing PDORow and PDOStatement instances with Reflection
29 object(PDOStatement)#%d (0) {
33 object(PDOStatement)#2 (1) {
H A Dbug_38253.phpt39 Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error: No fetch class specified in %s o…
41 Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error%s on line %d
45 Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error: No fetch function specified in %…
47 Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error%s on line %d
H A Dbug_77849_2.phpt7 $stmt = new PDOStatement();
12 Fatal error: Uncaught Error: Trying to clone an uncloneable object of class PDOStatement in %s:4
H A Dpdo_037.phpt2 Crash when calling a method of a class that inherits PDOStatement
8 class MyStatement extends PDOStatement
H A Dpdo_030.phpt23 class PDOStatementX extends PDOStatement
53 function query($sql, ...$rest): PDOStatement|false
99 string(12) "PDOStatement"
103 string(12) "PDOStatement"
H A Dpdo_026.phpt23 class PDOStatementX extends PDOStatement
46 function query($sql, ...$rest): PDOStatement|false
87 string(12) "PDOStatement"
H A Dpdo_029.phpt23 class PDOStatementX extends PDOStatement
52 function query($sql, ...$rest): PDOStatement|false
98 string(12) "PDOStatement"
H A Dpdo_014.phpt2 PDO Common: PDOStatement SPL iterator
49 class PDOStatementAggregate extends PDOStatement implements IteratorAggregate
62 return new IteratorIterator($this, 'PDOStatement');
H A Dpdo_034.phpt54 Warning: PDOStatement::fetch(): SQLSTATE[HY000]: General error: PDO::FETCH_KEY_PAIR fetch mode requ…
56 Warning: PDOStatement::fetch(): SQLSTATE[HY000]: General error%spdo_034.php on line %d
/php-src/ext/pdo_mysql/tests/
H A Dlast_insert_id.phpt30 PDOStatement Object
34 PDOStatement Object
38 PDOStatement Object
H A Dpdo_mysql_attr_statement_class.phpt40 // class not derived from PDOStatement
54 class mystatement extends PDOStatement {
69 class mystatement2 extends PDOStatement {
79 class mystatement3 extends PDOStatement {
89 class mystatement4 extends PDOStatement {
112 if (true !== ($tmp = $db->setAttribute(PDO::ATTR_STATEMENT_CLASS, array('PDOStatement'))))
137 string(12) "PDOStatement"
142 PDO::ATTR_STATEMENT_CLASS class must be derived from PDOStatement
H A Dbug53551.phpt2 Bug #53551 (PDOStatement execute segfaults for pdo_mysql driver)
50 Warning: PDOStatement::execute(): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'cou…
61 Warning: PDOStatement::execute(): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'cou…
H A Dbug79872.phpt26 … are pending result sets. Consider unsetting the previous PDOStatement or calling PDOStatement::cl…
H A Dpdo_mysql_stmt_fetch_serialize_simple.phpt2 MySQL PDOStatement->fetch(), PDO::FETCH_SERIALIZE
87 Deprecated: PDOStatement::fetchAll(): The PDO::FETCH_SERIALIZE mode is deprecated in %s on line %d
92 Deprecated: PDOStatement::fetchAll(): The PDO::FETCH_SERIALIZE mode is deprecated in %s on line %d
99 Deprecated: PDOStatement::setFetchMode(): The PDO::FETCH_SERIALIZE mode is deprecated in %s on line…
101 Deprecated: PDOStatement::fetch(): The PDO::FETCH_SERIALIZE mode is deprecated in %s on line %d
H A Dbug66528.phpt49 …te queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). A…
50 …te queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). A…
51 …te queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). A…
H A Dpdo_mysql_stmt_errorinfo.phpt2 MySQL PDOStatement->errorInfo();
81 Warning: PDOStatement::execute(): SQLSTATE[42S02]: Base table or view not found: 1146 Table '%s.pdo…
91 Warning: PDOStatement::execute(): SQLSTATE[42S02]: Base table or view not found: 1146 Table '%s.pdo…
122 Warning: PDOStatement::execute(): SQLSTATE[42S02]: Base table or view not found: 1146 Table '%s.pdo…
H A Dbug41125.phpt89 Warning: PDOStatement::execute(): SQLSTATE[HY093]: Invalid parameter number: number of bound variab…
127 Warning: PDOStatement::execute(): SQLSTATE[HY093]: Invalid parameter number: number of bound variab…
133 Warning: PDOStatement::execute(): SQLSTATE[HY093]: Invalid parameter number: number of bound variab…
143 Warning: PDOStatement::execute(): SQLSTATE[HY093]: Invalid parameter number: number of bound variab…
157 Warning: PDOStatement::execute(): SQLSTATE[HY093]: Invalid parameter number: number of bound variab…
163 Warning: PDOStatement::execute(): SQLSTATE[HY093]: Invalid parameter number: number of bound variab…
H A Dshow_tables.phpt18 PDOStatement Object
/php-src/Zend/tests/
H A Dbug71428.2.phpt11 class Statement extends PDOStatement implements StatementInterface {}
17 class Statement1 extends PDOStatement implements StatementInterface1 {}
H A Dbug70914.phpt17 PDOStatement::fetchObject(): Argument #1 ($class) must be a valid class name, %Z given
/php-src/ext/pdo_sqlite/tests/
H A Dbug44327_2.phpt26 object(PDOStatement)#%d (1) {
39 object(PDOStatement)#%d (1) {
H A Dpdo_sqlite_statement_getattribute.phpt2 PDO_sqlite: Testing PDOStatement::getAttribute()
H A Dbug79664.phpt2 Bug #79664 (PDOStatement::getColumnMeta fails on empty result set)

Completed in 26 milliseconds

12345