Implemented ACHIEVEMENT_FLAG_REALM_FIRST_REACH
[AHbot.git] / src / shared / Database / DatabaseSqlite.h
blobd067585a3a1c5c3be895da2a42cb738d773a2751
1 /*
2 * Copyright (C) 2005-2008 MaNGOS <http://getmangos.com/>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef DO_POSTGRESQL
21 #ifndef _DATABASESQLITE_H
22 #define _DATABASESQLITE_H
24 #include <sqlite/sqlite.h>
26 class DatabaseSqlite : public Database
28 public:
29 DatabaseSqlite();
30 ~DatabaseSqlite();
32 bool Initialize(const char *infoString);
34 QueryResult* Query(const char *sql);
35 bool Execute(const char *sql);
37 operator bool () const { return mSqlite != NULL; }
39 private:
40 sqlite *mSqlite;
42 #endif
43 #endif