summaryrefslogtreecommitdiffstats
path: root/src/backends/SQLite
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-17 17:11:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-29 21:58:43 +0900
commit40fbabf0fe3486a8e91f3caf2fbb40e341ba69aa (patch)
tree858bd532d394f08fe82b35ba2895a44501e16370 /src/backends/SQLite
parent54c9cce803be42c31e10d5865656cf8d38eb2ef6 (diff)
downloadkrecipes-40fbabf0fe3486a8e91f3caf2fbb40e341ba69aa.tar.gz
krecipes-40fbabf0fe3486a8e91f3caf2fbb40e341ba69aa.zip
Remove check for obsolete sqlite support. Check only for aqlite3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit d572a3f536f3cb283303c161095c5e83d4dc27da)
Diffstat (limited to 'src/backends/SQLite')
-rw-r--r--src/backends/SQLite/literecipedb.cpp18
-rw-r--r--src/backends/SQLite/literecipedb.h2
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