mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-21 03:21:43 -06:00
Fix bug with execution of sql with no tail and no semicolon at the end - patch by Barbulovski Boris bokic@users.sourceforge.net
This commit is contained in:
@@ -883,7 +883,7 @@ void mainForm::executeQuery()
|
||||
queryErrorLineEdit->setText(lastErrorMessage);
|
||||
queryResultListView->setResizeMode(Q3ListView::AllColumns);
|
||||
|
||||
if(*tail==0) break;
|
||||
if ((!tail)||(*tail==0)) break;
|
||||
if(err!=SQLITE_OK) break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user