Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
OCI Relational Functions, 28 of 38
This call sets up the skip parameters for a static array bind.
sword OCIBindArrayOfStruct ( OCIBind *bindp, OCIError *errhp, ub4 pvskip, ub4 indskip, ub4 alskip, ub4 rcskip );
The handle to a bind structure.
An error handle you can pass to OCIErrorGet()
for diagnostic information in the event of an error.
Skip parameter for the next data value.
Skip parameter for the next indicator value or structure.
Skip parameter for the next actual length value.
Skip parameter for the next column-level return code value.
This call sets up the skip parameters necessary for a static array bind. It follows a call to OCIBindByName()
or OCIBindByPos()
. The bind handle returned by that initial bind call is used as a parameter for the OCIBindArrayOfStruct()
call.
See Also:
For information about skip parameters, see the section "Binding and Defining Arrays of Structures". |
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|