From 872459a7cc525eb87a2dc5a82f1b137493186080 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Sun, 10 Jan 2010 21:46:58 +0100 Subject: added function for testing if table exists in database --- src/base/database.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/base/database.hpp') diff --git a/src/base/database.hpp b/src/base/database.hpp index 3bf699ad..d5313609 100644 --- a/src/base/database.hpp +++ b/src/base/database.hpp @@ -72,6 +72,14 @@ namespace usdx */ void sqlite_exec(const std::string sqlStatement); + /** + * Check if the given table exists in the database. + * + * @param table Name to check if exists + * @return true, if table exists, false if not + */ + const bool sqlite_table_exists(const std::string table); + // Singleton StatDatabase(std::string filename); -- cgit v1.2.3