/PHP-8.2/ext/pdo/tests/ |
H A D | pdo_016.phpt | 41 $stmt2->bindColumn('idx', $idx); 42 $stmt2->bindColumn('txt', $txt); 63 /* portability-wise, you may only bindColumn()s 65 $stmt3->bindColumn('txt', $col1); 72 /* portability-wise, you may only bindColumn()s 74 $stmt4->bindColumn('idx', $col2); 83 $stmt4->bindColumn('idx', $col1); 100 $stmt2->bindColumn('idx', $col1); 101 $stmt2->bindColumn('txt', $col1);
|
H A D | pdo_016a.phpt | 41 $stmt2->bindColumn('idx', $idx); 42 $stmt2->bindColumn('txt', $txt); 63 /* portability-wise, you may only bindColumn()s 65 $stmt3->bindColumn('txt', $col1); 72 /* portability-wise, you may only bindColumn()s 74 $stmt4->bindColumn('idx', $col2); 83 $stmt4->bindColumn('idx', $col1); 100 $stmt2->bindColumn('idx', $col1); 101 $stmt2->bindColumn('txt', $col1);
|
H A D | pdo_019.phpt | 35 $stmt->bindColumn('idx', $idx); 36 $stmt->bindColumn('txt', $txt);
|
H A D | pdo_018.phpt | 108 $stmt->bindColumn('id', $ctype);
|
/PHP-8.2/ext/pdo_firebird/tests/ |
H A D | bug_47415.phpt | 2 Bug #47415 PDO_Firebird segfaults when passing lowercased column name to bindColumn() 25 $stmt->bindColumn('idx', $idx); 26 $stmt->bindColumn('txt', $txt);
|
H A D | execute.phpt | 28 $s->bindColumn("TEXT",$var);
|
/PHP-8.2/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_stmt_bindvalue.phpt | 33 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 37 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR)) 55 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 59 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR)) 79 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 108 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 138 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 173 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 195 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 219 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) [all …]
|
H A D | pdo_mysql_stmt_bindcolumn.phpt | 2 MySQL PDOStatement->bindColumn() 26 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 30 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR)) 66 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 70 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR))
|
H A D | pdo_mysql_attr_max_buffer_size.phpt | 43 $stmt->bindColumn(1, $id); 44 $stmt->bindColumn(2, $val);
|
H A D | pdo_mysql_stmt_bindparam.phpt | 29 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 33 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR)) 68 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 72 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR))
|
H A D | pdo_mysql_stmt_closecursor_empty.phpt | 35 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 39 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR))
|
H A D | pdo_mysql_stmt_blobs.phpt | 43 $stmt->bindColumn(1, $id, PDO::PARAM_INT); 44 $stmt->bindColumn(2, $label, PDO::PARAM_LOB);
|
H A D | pdo_mysql_stmt_bindparam_types.phpt | 44 if (!$stmt->bindColumn(1, $id)) { 49 if (!$stmt->bindColumn(2, $label)) {
|
H A D | pdo_mysql_stmt_closecursor.phpt | 89 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 93 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR))
|
/PHP-8.2/ext/pdo_pgsql/tests/ |
H A D | large_objects.phpt | 39 $stmt->bindColumn('bloboid', $lob, PDO::PARAM_LOB); 51 $stmt->bindColumn('bloboid', $lob, PDO::PARAM_LOB); 62 $stmt->bindColumn('bloboid', $lob, PDO::PARAM_LOB);
|
/PHP-8.2/ext/pdo_odbc/tests/ |
H A D | bug80783.phpt | 20 $stmt->bindColumn(1, $data, PDO::PARAM_LOB);
|
H A D | bug80783a.phpt | 21 $stmt->bindColumn(1, $data, PDO::PARAM_STR);
|
/PHP-8.2/ext/pdo/ |
H A D | pdo_stmt.stub.php | 11 …public function bindColumn(string|int $column, mixed &$var, int $type = PDO::PARAM_STR, int $maxLe… function in PDOStatement
|
H A D | pdo_stmt_arginfo.h | 91 ZEND_METHOD(PDOStatement, bindColumn); 114 ZEND_ME(PDOStatement, bindColumn, arginfo_class_PDOStatement_bindColumn, ZEND_ACC_PUBLIC)
|
H A D | pdo_stmt.c | 1511 PHP_METHOD(PDOStatement, bindColumn) in PHP_METHOD() argument
|
/PHP-8.2/ext/pdo_oci/tests/ |
H A D | bug57702.phpt | 79 $stmt->bindColumn('d3_1' , $clob1, PDO::PARAM_LOB); 80 $stmt->bindColumn('d3_2' , $clob2, PDO::PARAM_LOB);
|