1 | /* |
---|
2 | * Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/> |
---|
3 | * |
---|
4 | * Copyright (C) 2008 Trinity <http://www.trinitycore.org/> |
---|
5 | * |
---|
6 | * This program is free software; you can redistribute it and/or modify |
---|
7 | * it under the terms of the GNU General Public License as published by |
---|
8 | * the Free Software Foundation; either version 2 of the License, or |
---|
9 | * (at your option) any later version. |
---|
10 | * |
---|
11 | * This program is distributed in the hope that it will be useful, |
---|
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
14 | * GNU General Public License for more details. |
---|
15 | * |
---|
16 | * You should have received a copy of the GNU General Public License |
---|
17 | * along with this program; if not, write to the Free Software |
---|
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
19 | */ |
---|
20 | |
---|
21 | #ifndef DO_POSTGRESQL |
---|
22 | |
---|
23 | #include "DatabaseEnv.h" |
---|
24 | |
---|
25 | DatabaseSqlite::DatabaseSqlite() : Database(), mSqlite(0) |
---|
26 | { |
---|
27 | } |
---|
28 | |
---|
29 | DatabaseSqlite::~DatabaseSqlite() |
---|
30 | { |
---|
31 | if (mSqlite) |
---|
32 | sqlite_close(mSqlite); |
---|
33 | } |
---|
34 | |
---|
35 | bool DatabaseSqlite::Initialize(const char *infoString) |
---|
36 | { |
---|
37 | if(!Database::Initialize(infoString)) |
---|
38 | return false; |
---|
39 | |
---|
40 | char *errmsg; |
---|
41 | |
---|
42 | mSqlite = sqlite_open(infoString, 0, &errmsg); |
---|
43 | |
---|
44 | if (!mSqlite) |
---|
45 | { |
---|
46 | |
---|
47 | if (errmsg) |
---|
48 | sqlite_freemem(errmsg); |
---|
49 | return false; |
---|
50 | } |
---|
51 | |
---|
52 | return true; |
---|
53 | } |
---|
54 | |
---|
55 | QueryResult* DatabaseSqlite::Query(const char *sql) |
---|
56 | { |
---|
57 | char *errmsg; |
---|
58 | |
---|
59 | if (!mSqlite) |
---|
60 | return 0; |
---|
61 | |
---|
62 | char **tableData; |
---|
63 | int rowCount; |
---|
64 | int fieldCount; |
---|
65 | |
---|
66 | sqlite_get_table(mSqlite, sql, &tableData, &rowCount, &fieldCount, &errmsg); |
---|
67 | |
---|
68 | if (!rowCount) |
---|
69 | return 0; |
---|
70 | |
---|
71 | if (!tableData) |
---|
72 | { |
---|
73 | |
---|
74 | if (errmsg) |
---|
75 | sqlite_freemem(errmsg); |
---|
76 | return 0; |
---|
77 | } |
---|
78 | |
---|
79 | QueryResultSqlite *queryResult = new QueryResultSqlite(tableData, rowCount, fieldCount); |
---|
80 | if(!queryResult) |
---|
81 | { |
---|
82 | |
---|
83 | return 0; |
---|
84 | } |
---|
85 | |
---|
86 | queryResult->NextRow(); |
---|
87 | |
---|
88 | return queryResult; |
---|
89 | } |
---|
90 | |
---|
91 | bool DatabaseSqlite::Execute(const char *sql) |
---|
92 | { |
---|
93 | char *errmsg; |
---|
94 | |
---|
95 | if (!mSqlite) |
---|
96 | return false; |
---|
97 | |
---|
98 | if(sqlite_exec(mSqlite, sql, NULL, NULL, &errmsg) != SQLITE_OK) |
---|
99 | return false; |
---|
100 | |
---|
101 | return true; |
---|
102 | } |
---|
103 | #endif |
---|