Lines Matching refs:PDO
2 PDO_Firebird: Bug #76488 PDO Firebird does not support boolean datatype in input parameters
28 // PDO::PARAM_BOOL
29 $query->bindValue('p', 0, PDO::PARAM_BOOL);
33 $query->bindValue('p', 1, PDO::PARAM_BOOL);
37 $query->bindValue('p', false, PDO::PARAM_BOOL);
41 $query->bindValue('p', true, PDO::PARAM_BOOL);
45 $query->bindValue('p', 'false', PDO::PARAM_BOOL);
49 $query->bindValue('p', 'True', PDO::PARAM_BOOL);
53 $query->bindValue('p', null, PDO::PARAM_BOOL);
57 // PDO::PARAM_STR
58 $query->bindValue('p', false, PDO::PARAM_STR);
62 $query->bindValue('p', true, PDO::PARAM_STR);
66 $query->bindValue('p', 0, PDO::PARAM_STR);
70 $query->bindValue('p', 1, PDO::PARAM_STR);
74 $query->bindValue('p', 'false', PDO::PARAM_STR);
78 $query->bindValue('p', 'true', PDO::PARAM_STR);
82 $query->bindValue('p', null, PDO::PARAM_STR);
86 // PDO::PARAM_INT
87 $query->bindValue('p', false, PDO::PARAM_INT);
91 $query->bindValue('p', true, PDO::PARAM_INT);
95 $query->bindValue('p', 0, PDO::PARAM_INT);
99 $query->bindValue('p', 1, PDO::PARAM_INT);
103 $query->bindValue('p', 'false', PDO::PARAM_INT);
107 $query->bindValue('p', 'true', PDO::PARAM_INT);