PQsendPrepare method
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,
);
}