Lines Matching refs:lob
43 $lob = oci_new_descriptor($c, OCI_D_LOB);
44 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
45 $lob->writeTemporary(null);
52 $lob->close();
57 $lob = oci_new_descriptor($c, OCI_D_LOB);
58 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
59 $lob->writeTemporary('');
66 $lob->close();
71 $lob = oci_new_descriptor($c, OCI_D_LOB);
72 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
73 $lob->writeTemporary('Inserted via SQL statement');
80 $lob->close();
87 $lob = oci_new_descriptor($c, OCI_D_LOB);
88 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
89 $lob->writeTemporary(null);
96 $lob->close();
101 $lob = oci_new_descriptor($c, OCI_D_LOB);
102 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
103 $lob->writeTemporary('');
110 $lob->close();
115 $lob = oci_new_descriptor($c, OCI_D_LOB);
116 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
117 $lob->writeTemporary('Inserted via procedure parameter');
124 $lob->close();
131 $lob = oci_new_descriptor($c, OCI_D_LOB);
132 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
134 $lob->save(null);
138 $lob = oci_new_descriptor($c, OCI_D_LOB);
139 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
141 $lob->save('');
145 $lob = oci_new_descriptor($c, OCI_D_LOB);
146 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
148 $lob->save('Inserted with RETURNING INTO');
174 $lob = oci_new_descriptor($c, OCI_D_LOB);
175 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
177 if (is_object($lob)) {
179 $r = $lob->load();