summaryrefslogtreecommitdiff
path: root/src/dal/sqlitedataprovider.h
diff options
context:
space:
mode:
authorDavid Athay <ko2fan@gmail.com>2009-07-10 10:39:53 +0100
committerDavid Athay <ko2fan@gmail.com>2009-07-10 10:39:53 +0100
commit10aaead456a9a7f5a19441db2a8e6a957f8e7508 (patch)
tree9a87ba8b10db8fc3e85d4140bdf1462f868453bf /src/dal/sqlitedataprovider.h
parentea21b3bf96d116964398273f1b096f61462b35dd (diff)
downloadmanaserv-10aaead456a9a7f5a19441db2a8e6a957f8e7508.tar.gz
manaserv-10aaead456a9a7f5a19441db2a8e6a957f8e7508.tar.bz2
manaserv-10aaead456a9a7f5a19441db2a8e6a957f8e7508.tar.xz
manaserv-10aaead456a9a7f5a19441db2a8e6a957f8e7508.zip
Changed BindInteger and BindString to BindValue
Diffstat (limited to 'src/dal/sqlitedataprovider.h')
-rw-r--r--src/dal/sqlitedataprovider.h15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/dal/sqlitedataprovider.h b/src/dal/sqlitedataprovider.h
index 3f1951d2..e446c9c0 100644
--- a/src/dal/sqlitedataprovider.h
+++ b/src/dal/sqlitedataprovider.h
@@ -159,25 +159,18 @@ class SqLiteDataProvider: public DataProvider
const RecordSet& processSql();
/**
- * Bind String
+ * Bind Value (String)
* @param place - which parameter to bind to
* @param value - the string to bind
*/
- void bindString(int place, const std::string &value);
+ void bindValue(int place, const std::string &value);
/**
- * Bind Integer
+ * Bind Value (Integer)
* @param place - which parameter to bind to
* @param value - the integer to bind
*/
- void bindInteger(int place, int value);
-
- /**
- * Bind Float
- * @param place - which parameter to bind to
- * @param value - the float to bind
- */
- void bindFloat(int place, float value);
+ void bindValue(int place, int value);
private: