PQsendPrepare method

int PQsendPrepare(
  1. Pointer<PGconn> conn,
  2. Pointer<Char> stmtName,
  3. Pointer<Char> query,
  4. int nParams,
  5. Pointer<Oid> paramTypes,
)

Implementation

int PQsendPrepare(
  ffi.Pointer<PGconn> conn,
  ffi.Pointer<ffi.Char> stmtName,
  ffi.Pointer<ffi.Char> query,
  int nParams,
  ffi.Pointer<Oid> paramTypes,
) {
  return _PQsendPrepare(
    conn,
    stmtName,
    query,
    nParams,
    paramTypes,
  );
}