Lines Matching refs:s
16 if (!($s = oci_parse($c, $insert_sql))) {
21 if (!oci_execute($s)) {
34 if (!($s = oci_parse($c, $select_sql))) {
38 if (!oci_execute($s)) {
41 while ($row = oci_fetch_array($s)) {
47 if (!oci_execute($s)) {
50 while ($row = oci_fetch_array($s, OCI_NUM)) {
56 if (!oci_execute($s)) {
59 while ($row = oci_fetch_array($s, OCI_ASSOC)) {
65 if (!oci_execute($s)) {
68 while ($row = oci_fetch_array($s, OCI_BOTH)) {
74 if (!oci_execute($s)) {
77 while ($row = oci_fetch_array($s, OCI_RETURN_LOBS)) {
83 if (!oci_execute($s)) {
86 while ($row = oci_fetch_array($s, OCI_RETURN_NULLS)) {
92 if (!oci_execute($s)) {
95 while ($row = oci_fetch_array($s, OCI_NUM+OCI_RETURN_NULLS)) {