summaryrefslogtreecommitdiff
path: root/src/dal/dataprovider.h
diff options
context:
space:
mode:
authorHuynh Tran <nthuynh75@gmail.com>2005-06-14 19:57:45 +0000
committerHuynh Tran <nthuynh75@gmail.com>2005-06-14 19:57:45 +0000
commit10dfdd74bc67a72ce969896cc2698662e2b7afb7 (patch)
treef41b086df0b1a4c9d21bcdf6c2cfe4605108c6b1 /src/dal/dataprovider.h
parent37e4f1a6e2cdf3aea39277649990f908a2d47cbc (diff)
downloadmanaserv-10dfdd74bc67a72ce969896cc2698662e2b7afb7.tar.gz
manaserv-10dfdd74bc67a72ce969896cc2698662e2b7afb7.tar.bz2
manaserv-10dfdd74bc67a72ce969896cc2698662e2b7afb7.tar.xz
manaserv-10dfdd74bc67a72ce969896cc2698662e2b7afb7.zip
Reworked RecordSet and implemented the SQLite Data Provider
Diffstat (limited to 'src/dal/dataprovider.h')
-rw-r--r--src/dal/dataprovider.h36
1 files changed, 35 insertions, 1 deletions
diff --git a/src/dal/dataprovider.h b/src/dal/dataprovider.h
index b5542e49..4b3f2ecf 100644
--- a/src/dal/dataprovider.h
+++ b/src/dal/dataprovider.h
@@ -111,9 +111,30 @@ class DataProvider
/**
+ * Create a connection to the database.
+ *
+ * @param dbName the database name.
+ * @param dbPath the database file path.
+ * @param userName the user name.
+ * @param password the user password.
+ *
+ * @exception DbConnectionFailure if unsuccessful connection.
+ * @exception std::exception if unexpected exception.
+ */
+ virtual void
+ connect(const std::string& dbName,
+ const std::string& dbPath,
+ const std::string& userName,
+ const std::string& password)
+ throw(DbConnectionFailure,
+ std::exception) = 0;
+
+
+ /**
* Execute a SQL query.
*
* @param sql the SQL query.
+ * @param refresh if true, refresh the cache (optional)
*
* @return a recordset.
*
@@ -121,7 +142,8 @@ class DataProvider
* @exception std::exception if unexpected exception.
*/
virtual const RecordSet&
- execSql(const std::string& sql)
+ execSql(const std::string& sql,
+ const bool refresh = false)
throw(DbSqlQueryExecFailure,
std::exception) = 0;
@@ -150,6 +172,18 @@ class DataProvider
protected:
/**
+ * The database name.
+ */
+ std::string mDbName;
+
+
+ /**
+ * The database path.
+ */
+ std::string mDbPath;
+
+
+ /**
* The connection status.
*/
bool mIsConnected;