Lines Matching refs:PDO
2 PDO_Firebird: Bug #76488 PDO Firebird does not support boolean datatype in input parameters
26 // PDO::PARAM_BOOL
27 $query->bindValue('p', 0, PDO::PARAM_BOOL);
31 $query->bindValue('p', 1, PDO::PARAM_BOOL);
35 $query->bindValue('p', false, PDO::PARAM_BOOL);
39 $query->bindValue('p', true, PDO::PARAM_BOOL);
43 $query->bindValue('p', 'false', PDO::PARAM_BOOL);
47 $query->bindValue('p', 'True', PDO::PARAM_BOOL);
51 $query->bindValue('p', null, PDO::PARAM_BOOL);
55 // PDO::PARAM_STR
56 $query->bindValue('p', false, PDO::PARAM_STR);
60 $query->bindValue('p', true, PDO::PARAM_STR);
64 $query->bindValue('p', 0, PDO::PARAM_STR);
68 $query->bindValue('p', 1, PDO::PARAM_STR);
72 $query->bindValue('p', 'false', PDO::PARAM_STR);
76 $query->bindValue('p', 'true', PDO::PARAM_STR);
80 $query->bindValue('p', null, PDO::PARAM_STR);
84 // PDO::PARAM_INT
85 $query->bindValue('p', false, PDO::PARAM_INT);
89 $query->bindValue('p', true, PDO::PARAM_INT);
93 $query->bindValue('p', 0, PDO::PARAM_INT);
97 $query->bindValue('p', 1, PDO::PARAM_INT);
101 $query->bindValue('p', 'false', PDO::PARAM_INT);
105 $query->bindValue('p', 'true', PDO::PARAM_INT);