/php-src/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-src/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_stmt_bindvalue.phpt | 34 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 38 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR)) 56 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 60 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR)) 80 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 109 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 139 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 174 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 196 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 220 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) [all …]
|
H A D | pdo_mysql_stmt_bindcolumn.phpt | 2 MySQL PDOStatement->bindColumn() 27 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 31 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR)) 67 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 71 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR))
|
H A D | pdo_mysql_attr_max_buffer_size.phpt | 34 $stmt->bindColumn(1, $id); 35 $stmt->bindColumn(2, $val);
|
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_bindparam.phpt | 31 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 35 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR)) 70 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 74 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 | 40 if (!$stmt->bindColumn(1, $id)) { 45 if (!$stmt->bindColumn(2, $label)) {
|
H A D | pdo_mysql_stmt_closecursor.phpt | 91 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 95 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR))
|
/php-src/ext/pdo_firebird/tests/ |
H A D | bug_47415.phpt | 2 Bug #47415 PDO_Firebird segfaults when passing lowercased column name to bindColumn() 23 $stmt->bindColumn('idx', $idx); 24 $stmt->bindColumn('txt', $txt);
|
H A D | execute.phpt | 29 $s->bindColumn("TEXT",$var);
|
/php-src/ext/pdo_pgsql/tests/ |
H A D | large_objects.phpt | 38 $stmt->bindColumn('bloboid', $lob, PDO::PARAM_LOB); 50 $stmt->bindColumn('bloboid', $lob, PDO::PARAM_LOB); 61 $stmt->bindColumn('bloboid', $lob, PDO::PARAM_LOB);
|
/php-src/ext/pdo_odbc/tests/ |
H A D | bug80783.phpt | 20 $stmt->bindColumn(1, $data, PDO::PARAM_LOB);
|
H A D | bug80783a.phpt | 26 $stmt->bindColumn(1, $data, PDO::PARAM_STR);
|
/php-src/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 | 90 ZEND_METHOD(PDOStatement, bindColumn); 112 ZEND_ME(PDOStatement, bindColumn, arginfo_class_PDOStatement_bindColumn, ZEND_ACC_PUBLIC)
|
H A D | pdo_stmt.c | 1500 PHP_METHOD(PDOStatement, bindColumn) in PHP_METHOD() argument
|