sql_query2.hh
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:0k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #ifndef __sql_query2_hh__
  2. #define __sql_query2_hh__
  3. #include "sql_query1.hh"
  4. inline SQLString &SQLQueryParms::operator[] (const char *str) {
  5.   if (parent) return operator[] (parent->parsed_nums[str]);
  6.   throw; // only here temporary 
  7. }
  8. inline const SQLString &SQLQueryParms::operator[] (const char *str) const {
  9.   if (parent) return operator[] (parent->parsed_nums[str]);
  10.   throw; // only here temporary 
  11. }
  12. #endif