Lines Matching refs:desc
38 $desc = oci_new_descriptor($c, OCI_D_LOB);
39 oci_bind_by_name($insert, ':data', $desc, -1, OCI_B_CLOB);
40 $desc->writeTemporary($string1, OCI_TEMP_CLOB);
42 $desc->save($string1);
44 $desc->close();
69 $desc = oci_new_descriptor($c, OCI_D_LOB);
70 oci_bind_by_name($insert, ':data', $desc, -1, OCI_B_CLOB);
71 $desc->writeTemporary($string2, OCI_TEMP_CLOB);
73 $desc->save($string2);
75 $desc->close();
100 $desc = oci_new_descriptor($c, OCI_D_LOB);
101 oci_bind_by_name($insert, ':data', $desc, -1, OCI_B_CLOB);
102 $desc->writeTemporary($string3, OCI_TEMP_CLOB);
104 $desc->save($string3);
106 $desc->close();
131 $desc = oci_new_descriptor($c, OCI_D_LOB);
132 oci_bind_by_name($insert, ':data', $desc, -1, OCI_B_CLOB);
133 $desc->writeTemporary($string4, OCI_TEMP_CLOB);
135 $desc->save($string4);
137 $desc->close();