Lines Matching refs:lob
39 $lob = oci_new_descriptor($c, OCI_D_LOB);
40 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
41 $lob->writeTemporary(null);
48 $lob->close();
53 $lob = oci_new_descriptor($c, OCI_D_LOB);
54 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
55 $lob->writeTemporary('');
62 $lob->close();
67 $lob = oci_new_descriptor($c, OCI_D_LOB);
68 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
69 $lob->writeTemporary('Inserted via SQL statement');
76 $lob->close();
83 $lob = oci_new_descriptor($c, OCI_D_LOB);
84 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
85 $lob->writeTemporary(null);
92 $lob->close();
97 $lob = oci_new_descriptor($c, OCI_D_LOB);
98 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
99 $lob->writeTemporary('');
106 $lob->close();
111 $lob = oci_new_descriptor($c, OCI_D_LOB);
112 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
113 $lob->writeTemporary('Inserted via procedure parameter');
120 $lob->close();
127 $lob = oci_new_descriptor($c, OCI_D_LOB);
128 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
130 $lob->save(null);
134 $lob = oci_new_descriptor($c, OCI_D_LOB);
135 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
137 $lob->save('');
141 $lob = oci_new_descriptor($c, OCI_D_LOB);
142 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
144 $lob->save('Inserted with RETURNING INTO');
170 $lob = oci_new_descriptor($c, OCI_D_LOB);
171 oci_bind_by_name($s, ':b', $lob, -1, OCI_B_CLOB);
173 if (is_object($lob)) {
175 $r = $lob->load();