diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-17 17:11:53 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-21 09:29:11 +0900 |
| commit | d572a3f536f3cb283303c161095c5e83d4dc27da (patch) | |
| tree | c790f230f544e78d4e4403a16b4e26a2401785e3 /src/backends/SQLite | |
| parent | 0d190c75668f6c20aaad9bc2a458b801de90ee0b (diff) | |
| download | krecipes-d572a3f536f3cb283303c161095c5e83d4dc27da.tar.gz krecipes-d572a3f536f3cb283303c161095c5e83d4dc27da.zip | |
Remove check for obsolete sqlite support. Check only for aqlite3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/backends/SQLite')
| -rw-r--r-- | src/backends/SQLite/literecipedb.cpp | 18 | ||||
| -rw-r--r-- | src/backends/SQLite/literecipedb.h | 2 |
2 files changed, 4 insertions, 16 deletions
diff --git a/src/backends/SQLite/literecipedb.cpp b/src/backends/SQLite/literecipedb.cpp index 9531791..fa5577a 100644 --- a/src/backends/SQLite/literecipedb.cpp +++ b/src/backends/SQLite/literecipedb.cpp @@ -27,8 +27,6 @@ #if HAVE_SQLITE3 #include <sqlite3.h> -#elif HAVE_SQLITE -#include <sqlite.h> #endif //keep these two around for porting old databases @@ -63,9 +61,7 @@ int LiteRecipeDB::lastInsertID() TQStringList LiteRecipeDB::backupCommand() const { - #if HAVE_SQLITE - TQString binary = "sqlite"; - #elif HAVE_SQLITE3 + #if HAVE_SQLITE3 TQString binary = "sqlite3"; #endif @@ -80,9 +76,7 @@ TQStringList LiteRecipeDB::backupCommand() const TQStringList LiteRecipeDB::restoreCommand() const { - #if HAVE_SQLITE - TQString binary = "sqlite"; - #elif HAVE_SQLITE3 + #if HAVE_SQLITE3 TQString binary = "sqlite3"; #endif @@ -1014,15 +1008,11 @@ TQString escape( const TQString &s ) if ( !s_escaped.isEmpty() ) { //###: sqlite_mprintf() seems to fill an empty string with garbage // Escape using SQLite's function -#if HAVE_SQLITE - char * escaped = sqlite_mprintf( "%q", s.latin1() ); // Escape the string(allocates memory) -#elif HAVE_SQLITE3 +#if HAVE_SQLITE3 char * escaped = sqlite3_mprintf( "%q", s.latin1() ); // Escape the string(allocates memory) #endif s_escaped = escaped; -#if HAVE_SQLITE - sqlite_freemem( escaped ); // free allocated memory -#elif HAVE_SQLITE3 +#if HAVE_SQLITE3 sqlite3_free( escaped ); // free allocated memory #endif } diff --git a/src/backends/SQLite/literecipedb.h b/src/backends/SQLite/literecipedb.h index f108599..f7b116d 100644 --- a/src/backends/SQLite/literecipedb.h +++ b/src/backends/SQLite/literecipedb.h @@ -23,8 +23,6 @@ #ifdef HAVE_SQLITE3 #define SQLITE_DRIVER "TQSQLITE3" -#elif HAVE_SQLITE -#define SQLITE_DRIVER "TQSQLITE" #endif class LiteRecipeDB : public TQSqlRecipeDB |
