summaryrefslogtreecommitdiff
path: root/lib/SQL.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/SQL.cc')
-rw-r--r--lib/SQL.cc10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/SQL.cc b/lib/SQL.cc
index 3234ffd..7667cfb 100644
--- a/lib/SQL.cc
+++ b/lib/SQL.cc
@@ -29,15 +29,17 @@ SQLConnection::~SQLConnection() {
mysql_close(&con);
}
-void SQLConnection::query(String q) throw(GeneralException) {
+int SQLConnection::query(String q) {
+ int r;
+
if (res) {
mysql_free_result(res);
}
res = 0;
- if (mysql_real_query(&con, ((ugly_string)q).p, q.strlen())) {
- throw GeneralException(String("Couldn't run query ") + q);
+ if ((r = mysql_real_query(&con, ((ugly_string)q).p, q.strlen()))) {
+ return r;
}
res = mysql_store_result(&con);
@@ -55,6 +57,8 @@ void SQLConnection::query(String q) throw(GeneralException) {
na = 0;
ii = -1;
}
+
+ return r;
}
int SQLConnection::numrows() {