summaryrefslogtreecommitdiff
path: root/lib/SQL.cc
diff options
context:
space:
mode:
authorpixel <pixel>2007-04-12 18:29:03 +0000
committerpixel <pixel>2007-04-12 18:29:03 +0000
commit2f0a0fa3d536f0b820537f130111acb195d6f46d (patch)
treeac1ee9202e35ca553e7ceba0cad69e98516239e6 /lib/SQL.cc
parent1fdd95292cdf7f58109cc3fc5ab5ead2288f1bfc (diff)
Beeing a bit nicer with memory.
Diffstat (limited to 'lib/SQL.cc')
-rw-r--r--lib/SQL.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/SQL.cc b/lib/SQL.cc
index 7667cfb..35b005d 100644
--- a/lib/SQL.cc
+++ b/lib/SQL.cc
@@ -6,8 +6,8 @@
#include "SQL.h"
-SQLConnection::SQLConnection(String host, String user, String passwd,
- String db, int port, String socket,
+SQLConnection::SQLConnection(const String & host, const String & user, const String & passwd,
+ const String & db, int port, const String & socket,
unsigned long cflags) throw (GeneralException) : res(0) {
mysql_init(&con);
@@ -29,7 +29,7 @@ SQLConnection::~SQLConnection() {
mysql_close(&con);
}
-int SQLConnection::query(String q) {
+int SQLConnection::query(const String & q) {
int r;
if (res) {