PQescapeByteaConn method

Pointer<UnsignedChar> PQescapeByteaConn(
  1. Pointer<PGconn> conn,
  2. Pointer<UnsignedChar> from,
  3. int from_length,
  4. Pointer<Size> to_length,
)

Implementation

ffi.Pointer<ffi.UnsignedChar> PQescapeByteaConn(
  ffi.Pointer<PGconn> conn,
  ffi.Pointer<ffi.UnsignedChar> from,
  int from_length,
  ffi.Pointer<ffi.Size> to_length,
) {
  return _PQescapeByteaConn(
    conn,
    from,
    from_length,
    to_length,
  );
}