Beispiel #1
0
 internal static int OCIBindByNameBytes(IntPtr stmtp,
     out IntPtr bindpp,
     IntPtr errhp,
     string placeholder,
     int placeh_len,
     byte[] 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, "OCIBindByName", "OCI");
     #endif
     return OciNativeCalls.OCIBindByNameBytes (stmtp, out bindpp, errhp, placeholder, placeh_len, valuep,
         value_sz, dty, indp, alenp, rcodep, maxarr_len, curelp, mode);
 }