Update svn/sqlite cmake detection

(part of the original commit)
(cherry picked from commit 4ce4baa8d6)
v3.5.13-sru
Timothy Pearson 13 years ago committed by Slávek Banko
parent 8bc7b60584
commit 098a5e2fa7

@ -187,7 +187,7 @@ public:
TQDataBase db = TQSqlDatabase::addDatabase(SQLTYPE,_key);
db->setDatabaseName(m_BasePath+"/maindb.db");
if (!db->open()) {
qWarning("Failed to open main database: " + db->lastError().text());
qWarning(TQString("Failed to open main database: " + db->lastError().text()).ascii());
} else {
m_mainDB.setLocalData(new ThreadDBStore);
m_mainDB.localData()->key = _key;
@ -269,12 +269,12 @@ void LogCache::setupMainDb()
#endif
TQDataBase mainDB = m_CacheData->getMainDB();
if (!mainDB || !mainDB->open()) {
qWarning("Failed to open main database: " + (mainDB?mainDB->lastError().text():"No database object."));
qWarning(TQString("Failed to open main database: " + (mainDB?mainDB->lastError().text():"No database object.")).ascii());
} else {
TQSqlQuery q(TQString(), mainDB);
mainDB->transaction();
if (!q.exec("CREATE TABLE IF NOT EXISTS \""+TQString(SQLMAINTABLE)+"\" (\"reposroot\" TEXT,\"id\" INTEGER PRIMARY KEY NOT NULL);")) {
qWarning("Failed create main database: " + mainDB->lastError().text());
qWarning(TQString("Failed create main database: " + mainDB->lastError().text()).ascii());
}
mainDB->commit();
}

@ -3,6 +3,7 @@
#include <tqstring.h>
#include <tqdir.h>
#include <tqmutex.h>
#include "svnqt/svnqt_defines.hpp"
#include "svnqt/shared_pointer.hpp"

Loading…
Cancel
Save