diff options
Diffstat (limited to 'src/backends/recipedb.cpp')
-rw-r--r-- | src/backends/recipedb.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backends/recipedb.cpp b/src/backends/recipedb.cpp index fbc0ff4..ab540b7 100644 --- a/src/backends/recipedb.cpp +++ b/src/backends/recipedb.cpp @@ -46,7 +46,7 @@ #include "MySQL/mysqlrecipedb.h" #endif -#if HAVE_SQLITE || HAVE_SQLITE3 +#if HAVE_SQLITE3 #include "SQLite/literecipedb.h" #endif @@ -119,18 +119,18 @@ RecipeDB* RecipeDB::createDatabase( const TQString &dbType, const TQString &host if ( 0 ) ; //we need some condition here -#if HAVE_SQLITE || HAVE_SQLITE3 +#if HAVE_SQLITE3 else if ( dbType == "SQLite" ) { database = new LiteRecipeDB( file ); } -#endif //HAVE_SQLITE || HAVE_SQLITE3 - #if HAVE_MYSQL +#endif // HAVE_SQLITE3 +#if HAVE_MYSQL else if ( dbType == "MySQL" ) { database = new MySQLRecipeDB( host, user, pass, dbname, port ); } #endif //HAVE_MYSQL - #if HAVE_POSTGRESQL +#if HAVE_POSTGRESQL else if ( dbType == "PostgreSQL" ) { database = new PSqlRecipeDB( host, user, pass, dbname, port ); } |