mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
Clean up multi threading patch, fix build and some bugs
Make strings translatable, remove some more debug code, fix tests, reduce size of patch slightly, remove weird tooltip, don't crash when closing database, simplify code, fix filters, don't link agains pthread on Windows.
This commit is contained in:
@@ -607,7 +607,7 @@ bool ImportCsvDialog::importCsv(const QString& fileName, const QString& name)
|
||||
sQuery.chop(1); // Remove last comma
|
||||
sQuery.append(")");
|
||||
sqlite3_stmt* stmt;
|
||||
auto pDb = pdb->get("importing CSV");
|
||||
auto pDb = pdb->get(tr("importing CSV"));
|
||||
sqlite3_prepare_v2(pDb.get(), sQuery.toUtf8(), sQuery.toUtf8().length(), &stmt, nullptr);
|
||||
|
||||
// Parse entire file
|
||||
|
||||
Reference in New Issue
Block a user