/PHP-7.0/ext/pdo/tests/ |
H A D | pdo_016.phpt | 40 $stmt2->bindColumn('idx', $idx); 41 $stmt2->bindColumn('txt', $txt); 62 /* portability-wise, you may only bindColumn()s 64 $stmt3->bindColumn('txt', $col1); 71 /* portability-wise, you may only bindColumn()s 73 $stmt4->bindColumn('idx', $col2); 82 $stmt4->bindColumn('idx', $col1); 99 $stmt2->bindColumn('idx', $col1); 100 $stmt2->bindColumn('txt', $col1);
|
H A D | pdo_016a.phpt | 40 $stmt2->bindColumn('idx', $idx); 41 $stmt2->bindColumn('txt', $txt); 62 /* portability-wise, you may only bindColumn()s 64 $stmt3->bindColumn('txt', $col1); 71 /* portability-wise, you may only bindColumn()s 73 $stmt4->bindColumn('idx', $col2); 82 $stmt4->bindColumn('idx', $col1); 99 $stmt2->bindColumn('idx', $col1); 100 $stmt2->bindColumn('txt', $col1);
|
H A D | pdo_019.phpt | 34 $stmt->bindColumn('idx', $idx); 35 $stmt->bindColumn('txt', $txt);
|
H A D | pdo_018.phpt | 97 $stmt->bindColumn('id', $ctype);
|
/PHP-7.0/ext/pdo_firebird/tests/ |
H A D | bug_47415.phpt | 2 Bug #47415 PDO_Firebird segfaults when passing lowercased column name to bindColumn() 22 $stmt->bindColumn('idx', $idx); 23 $stmt->bindColumn('txt', $txt);
|
H A D | execute.phpt | 28 $s->bindColumn("TEXT",$var);
|
/PHP-7.0/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_stmt_bindvalue.phpt | 32 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 36 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR)) 54 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 58 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR)) 78 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 107 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 137 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 172 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 194 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 218 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) [all …]
|
H A D | pdo_mysql_stmt_bindcolumn.phpt | 2 MySQL PDOStatement->bindColumn() 25 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 29 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR)) 65 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 69 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR))
|
H A D | pdo_mysql_attr_max_buffer_size.phpt | 42 $stmt->bindColumn(1, $id); 43 $stmt->bindColumn(2, $val);
|
H A D | pdo_mysql_stmt_closecursor_empty.phpt | 34 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 38 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR))
|
H A D | pdo_mysql_stmt_bindparam.phpt | 28 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 32 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_stmt_blobs.phpt | 42 $stmt->bindColumn(1, $id, PDO::PARAM_INT); 43 $stmt->bindColumn(2, $label, PDO::PARAM_LOB);
|
H A D | pdo_mysql_stmt_bindparam_types.phpt | 43 if (!$stmt->bindColumn(1, $id)) { 48 if (!$stmt->bindColumn(2, $label)) {
|
H A D | pdo_mysql_stmt_closecursor.phpt | 88 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 92 if (!$stmt->bindColumn(2, $label, PDO::PARAM_STR))
|
/PHP-7.0/ext/pdo_pgsql/tests/ |
H A D | large_objects.phpt | 37 $stmt->bindColumn('bloboid', $lob, PDO::PARAM_LOB); 49 $stmt->bindColumn('bloboid', $lob, PDO::PARAM_LOB); 60 $stmt->bindColumn('bloboid', $lob, PDO::PARAM_LOB);
|
/PHP-7.0/ext/pdo/ |
H A D | pdo.php | 50 $stmt->bindColumn('VALUE', $value);
|
H A D | pdo_stmt.c | 1632 static PHP_METHOD(PDOStatement, bindColumn) in PHP_METHOD() argument 2167 PHP_ME(PDOStatement, bindColumn, arginfo_pdostatement_bindcolumn, ZEND_ACC_PUBLIC)
|
/PHP-7.0/ext/pdo_oci/tests/ |
H A D | bug57702.phpt | 77 $stmt->bindColumn('d3_1' , $clob1, PDO::PARAM_LOB); 78 $stmt->bindColumn('d3_2' , $clob2, PDO::PARAM_LOB);
|