Menu

#4 execute sql error

open
nobody
None
5
2011-11-13
2011-11-13
Anonymous
No

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;
}

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.