query.cpp
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 0k
Development Platform:

C/C++

  1. #include <windows.h>
  2. #include "query3.hh"
  3. MysqlQuery::MysqlQuery(const MysqlQuery &q) : SQLQuery(q) {
  4.   throw_exceptions = q.throw_exceptions;
  5.   mysql = q.mysql;
  6. }
  7. MysqlQuery& MysqlQuery::operator = (const MysqlQuery &q) {
  8.   throw_exceptions = q.throw_exceptions;
  9.   mysql = q.mysql;
  10.   SQLQuery::operator = (q);
  11.   return *this;
  12. }
  13. bool MysqlQuery::exec (const string& str) { return mysql->exec(str);}