Databaseconnectionclasses  0.5.3
hk_mysqlactionquery.h
1 // ****************************************************************************
2 // copyright (c) 2000-2005 Horst Knorr <hk_classes@knoda.org>
3 // This file is part of the hk_mysqlclasses library.
4 // This file may be distributed and/or modified under the terms of the
5 // GNU Library Public License version 2 as published by the Free Software
6 // Foundation and appearing in the file COPYING included in the
7 // packaging of this file.
8 // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
9 // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
10 // ****************************************************************************
11 #ifndef HK_MYSQLACTIONQUERY
12 #define HK_MYSQLACTIONQUERY
13 #include "hk_actionquery.h"
14 class hk_mysqldatabase;
16 {
17  friend class hk_mysqldatabase;
18  friend class hk_mysqldatasource;
19 
20  public:
21 
22  protected:
24  bool driver_specific_execute(void);
25  bool driver_specific_sql(const char* s);
26  private:
27  hk_mysqldatabase* mysqldb;
28 
29 };
30 #endif
Definition: hk_mysqldatasource.h:25
Definition: hk_mysqlactionquery.h:15
Definition: hk_mysqldatabase.h:19
Action query (i.e. ALTER TABLE) with no result.
Definition: hk_actionquery.h:29