PQescapeIdentifier method

Pointer<Char> PQescapeIdentifier(
  1. Pointer<PGconn> conn,
  2. Pointer<Char> str,
  3. int len
)

Implementation

ffi.Pointer<ffi.Char> PQescapeIdentifier(
  ffi.Pointer<PGconn> conn,
  ffi.Pointer<ffi.Char> str,
  int len,
) {
  return _PQescapeIdentifier(
    conn,
    str,
    len,
  );
}