summaryrefslogtreecommitdiff
path: root/plugins/Import/src/dbrw/dbcontacts.cpp
diff options
context:
space:
mode:
authoraunsane <aunsane@gmail.com>2018-03-07 23:51:51 +0300
committeraunsane <aunsane@gmail.com>2018-03-07 23:52:18 +0300
commit7487e46fa72959aa95b86657774ec8608858427b (patch)
tree839f74d627c25334ae8652d6a4980254ceba3281 /plugins/Import/src/dbrw/dbcontacts.cpp
parent777dc2174f34c2a4d4499c3d63ef8914ed9ecb81 (diff)
Import: some fixes for dbrw loader
Diffstat (limited to 'plugins/Import/src/dbrw/dbcontacts.cpp')
-rw-r--r--plugins/Import/src/dbrw/dbcontacts.cpp16
1 files changed, 15 insertions, 1 deletions
diff --git a/plugins/Import/src/dbrw/dbcontacts.cpp b/plugins/Import/src/dbrw/dbcontacts.cpp
index c3aac4b1bc..66ffcb61b9 100644
--- a/plugins/Import/src/dbrw/dbcontacts.cpp
+++ b/plugins/Import/src/dbrw/dbcontacts.cpp
@@ -22,6 +22,21 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "../stdafx.h"
+void CDbxSQLite::FillContacts()
+{
+ sqlite3_stmt *st = nullptr;
+ if (sql_prepare(m_sqlite, "SELECT c.id, s.val FROM dbrw_contacts as c INNER JOIN dbrw_settings as s on s.id = c.id WHERE s.module = 'Protocol' and s.setting = 'p';", &st) != SQLITE_OK)
+ return;
+
+ while (sql_step(st) == SQLITE_ROW) {
+ MCONTACT contactID = sqlite3_column_int(st, 0);
+ const char *proto = (const char*)sqlite3_column_text(st, 1);
+ DBCachedContact *cc = m_cache->AddContactToCache(contactID);
+ cc->szProto = mir_strdup(proto);
+ }
+ sql_finalize(st);
+}
+
STDMETHODIMP_(BOOL) CDbxSQLite::IsDbContact(MCONTACT contactID)
{
DBCachedContact *cc = m_cache->GetCachedContact(contactID);
@@ -31,7 +46,6 @@ STDMETHODIMP_(BOOL) CDbxSQLite::IsDbContact(MCONTACT contactID)
STDMETHODIMP_(LONG) CDbxSQLite::GetContactCount(void)
{
int res = 0;
- sqlite3_bind_int(ctc_stmts_prep[SQL_CTC_STMT_COUNT], 1, res);
if (sql_step(ctc_stmts_prep[SQL_CTC_STMT_COUNT]) == SQLITE_ROW)
res = sqlite3_column_int(ctc_stmts_prep[SQL_CTC_STMT_COUNT], 0);
sql_reset(ctc_stmts_prep[SQL_CTC_STMT_COUNT]);