Esempio n. 1
0
void sqlapi_bndprogramidfwrite(FILE *bndfile, const SqlApiBindProgramId &programid) {
  Packer p;
  p << programid;
  p.write(ByteOutputFile(bndfile));
}
Esempio n. 2
0
void sqlapi_bndstmtfwrite(FILE *bndfile, const SqlApiBindStmt &bndstmt) {
  Packer p;
  p << bndstmt;
  p.write(ByteOutputFile(bndfile));
}