Gday,
I'm writing a utiity to access a Thunderbird global-messages-db.sqlite database. I can open it successfully using the SQLite DB Browser, but when I attempt to open the same file using Aurelius, I get a SQLite exception "unknown tokenizer: mozporter pragma table_info("conversationsText")".
The code concerned is:
fConnection := TSQLiteNativeConnectionAdapter.Create(fDBName);
TDatabaseManager.Update(fConnection);
result := fConnection.IsConnected;
where fConnection is an IDBConnection and fDBName is a full path to a SQLite DB.
Is there any clue you can give me to successfully open this DB please?
Thanks,
Pat