Lines Matching refs:desc
40 $desc = oci_new_descriptor($c, OCI_D_LOB);
41 oci_bind_by_name($insert, ':data', $desc, -1, OCI_B_CLOB);
42 $desc->writeTemporary($string1, OCI_TEMP_CLOB);
44 $desc->save($string1);
46 $desc->close();
71 $desc = oci_new_descriptor($c, OCI_D_LOB);
72 oci_bind_by_name($insert, ':data', $desc, -1, OCI_B_CLOB);
73 $desc->writeTemporary($string2, OCI_TEMP_CLOB);
75 $desc->save($string2);
77 $desc->close();
102 $desc = oci_new_descriptor($c, OCI_D_LOB);
103 oci_bind_by_name($insert, ':data', $desc, -1, OCI_B_CLOB);
104 $desc->writeTemporary($string3, OCI_TEMP_CLOB);
106 $desc->save($string3);
108 $desc->close();
133 $desc = oci_new_descriptor($c, OCI_D_LOB);
134 oci_bind_by_name($insert, ':data', $desc, -1, OCI_B_CLOB);
135 $desc->writeTemporary($string4, OCI_TEMP_CLOB);
137 $desc->save($string4);
139 $desc->close();