execute sql error
Brought to you by:
kdsql
When you execute a sql query in "Execute SQL". The sqlitebrowser is freezing.
The reason is in from.cpp, in mainForm::executeQuery()
you have there a wile(1){ }
to avoid this, add add at line 887 (at the end of while):
if(err != 0)
break;
the code will look:
while(1){
...your code;
if(err!=0)
break;
}