Beispiel #1
0
 internal static int OCIBindByPosRef(IntPtr stmtp,
     out IntPtr bindpp,
     IntPtr errhp,
     uint position,
     ref IntPtr valuep,
     int value_sz,
     [MarshalAs (UnmanagedType.U2)] OciDataType dty,
     IntPtr indp,
     IntPtr alenp,
     IntPtr rcodep,
     uint maxarr_len,
     IntPtr curelp,
     uint mode)
 {
     #if TRACE
     Trace.WriteLineIf(traceOci, "OCIBindByPos", "OCI");
     #endif
     return OciNativeCalls.OCIBindByPosRef (stmtp, out bindpp, errhp, position, ref valuep,
         value_sz, dty, indp, alenp, rcodep, maxarr_len, curelp, mode);
 }