Lines Matching refs:cols
96 if (S->cols) { in oci_stmt_dtor()
98 if (S->cols[i].data) { in oci_stmt_dtor()
99 switch (S->cols[i].dtype) { in oci_stmt_dtor()
105 efree(S->cols[i].data); in oci_stmt_dtor()
109 efree(S->cols); in oci_stmt_dtor()
110 S->cols = NULL; in oci_stmt_dtor()
160 if (S->cols) { in oci_stmt_execute()
163 if (S->cols[i].data) { in oci_stmt_execute()
164 switch (S->cols[i].dtype) { in oci_stmt_execute()
170 efree(S->cols[i].data); in oci_stmt_execute()
174 efree(S->cols); in oci_stmt_execute()
177 S->cols = ecalloc(colcount, sizeof(pdo_oci_column)); in oci_stmt_execute()
536 S->cols[colno].dtype = dtype; in oci_stmt_describe()
547 S->cols[colno].datalen = 512; /* XXX should be INT_MAX and fetched by pieces */ in oci_stmt_describe()
548 S->cols[colno].data = emalloc(S->cols[colno].datalen + 1); in oci_stmt_describe()
555 … STMT_CALL(OCIDescriptorAlloc, (S->H->env, (dvoid**)&S->cols[colno].data, OCI_DTYPE_LOB, 0, NULL)); in oci_stmt_describe()
556 S->cols[colno].datalen = sizeof(OCILobLocator*); in oci_stmt_describe()
571 S->cols[colno].datalen = 512; in oci_stmt_describe()
574 S->cols[colno].datalen = 1024; in oci_stmt_describe()
577 S->cols[colno].datalen = col->maxlen; in oci_stmt_describe()
580 S->cols[colno].datalen *= 3; in oci_stmt_describe()
582 S->cols[colno].data = emalloc(S->cols[colno].datalen + 1); in oci_stmt_describe()
589 STMT_CALL(OCIDefineByPos, (S->stmt, &S->cols[colno].def, S->err, colno+1, in oci_stmt_describe()
590 S->cols[colno].data, S->cols[colno].datalen, dtype, &S->cols[colno].indicator, in oci_stmt_describe()
591 &S->cols[colno].fetched_len, &S->cols[colno].retcode, dyn ? OCI_DYNAMIC_FETCH : OCI_DEFAULT)); in oci_stmt_describe()
594 STMT_CALL(OCIDefineDynamic, (S->cols[colno].def, S->err, &S->cols[colno], in oci_stmt_describe()
719 pdo_oci_column *C = &S->cols[colno]; in oci_stmt_get_col()