00001 // **************************************************************************** 00002 // copyright (c) 2000-2005 Horst Knorr <hk_classes@knoda.org> 00003 // This file is part of the hk_mysqlclasses library. 00004 // This file may be distributed and/or modified under the terms of the 00005 // GNU Library Public License version 2 as published by the Free Software 00006 // Foundation and appearing in the file COPYING included in the 00007 // packaging of this file. 00008 // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00009 // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00010 // **************************************************************************** 00011 #ifndef HK_MYSQLACTIONQUERY 00012 #define HK_MYSQLACTIONQUERY 00013 #include "hk_actionquery.h" 00014 class hk_mysqldatabase; 00015 class hk_mysqlactionquery:public hk_actionquery 00016 { 00017 friend class hk_mysqldatabase; 00018 friend class hk_mysqldatasource; 00019 00020 public: 00021 00022 protected: 00023 hk_mysqlactionquery(hk_mysqldatabase* db); 00024 bool driver_specific_execute(void); 00025 bool driver_specific_sql(const char* s); 00026 private: 00027 hk_mysqldatabase* mysqldb; 00028 00029 }; 00030 #endif
1.5.0