Switched to using a wildcard symbol

This commit is contained in:
Kayne Ruse
2014-05-06 00:17:50 +10:00
parent 9236e02101
commit 7c210e04a5
+1 -1
View File
@@ -31,7 +31,7 @@
//------------------------- //-------------------------
static const char* CREATE_USER_ACCOUNT = "INSERT INTO UserAccounts (username) VALUES (?);"; static const char* CREATE_USER_ACCOUNT = "INSERT INTO UserAccounts (username) VALUES (?);";
static const char* LOAD_USER_ACCOUNT = "SELECT uid, username, blacklisted, whitelisted FROM UserAccounts WHERE username = ?;"; static const char* LOAD_USER_ACCOUNT = "SELECT * FROM UserAccounts WHERE username = ?;";
//------------------------- //-------------------------
//Define the methods //Define the methods