Revision: 6290
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=6290&view=rev
Author: wis775
Date: 2011-06-04 15:27:27 +0000 (Sat, 04 Jun 2011)
Log Message:
-----------
When displaying the content of a table, the dialog "Please wait while the query is executed" may not dispose.
This may occurs only for tables of a "In Memory Database" with only a few rows of data. (The query has to be quick enough)
Modified Paths:
--------------
trunk/sql12/app/src/main/java/net/sourceforge/squirrel_sql/client/session/mainpanel/objecttree/tabs/table/ContentsTab.java
trunk/sql12/doc/src/main/resources/changes.txt
Modified: trunk/sql12/app/src/main/java/net/sourceforge/squirrel_sql/client/session/mainpanel/objecttree/tabs/table/ContentsTab.java
===================================================================
--- trunk/sql12/app/src/main/java/net/sourceforge/squirrel_sql/client/session/mainpanel/objecttree/tabs/table/ContentsTab.java 2011-06-04 11:37:02 UTC (rev 6289)
+++ trunk/sql12/app/src/main/java/net/sourceforge/squirrel_sql/client/session/mainpanel/objecttree/tabs/table/ContentsTab.java 2011-06-04 15:27:27 UTC (rev 6290)
@@ -458,13 +458,13 @@
*/
private void disposeWaitDialog() {
if (!_prefs.getShowPleaseWaitDialog()) return;
- if (_waitDialog != null) {
GUIUtils.processOnSwingEventThread(new Runnable() {
public void run() {
+ if (_waitDialog != null) {
_waitDialog.dispose();
}
+ }
});
- }
}
public void setDatabaseObjectInfo(IDatabaseObjectInfo value)
Modified: trunk/sql12/doc/src/main/resources/changes.txt
===================================================================
--- trunk/sql12/doc/src/main/resources/changes.txt 2011-06-04 11:37:02 UTC (rev 6289)
+++ trunk/sql12/doc/src/main/resources/changes.txt 2011-06-04 15:27:27 UTC (rev 6290)
@@ -74,6 +74,9 @@
Bug-fixes:
+When displaying the content of a table, the dialog "Please wait while the query is executed" may not dispose.
+ This may occurs only for tables of a "In Memory Database" with only a few rows of data.
+
3309565: Not possible to translate SQL connection error messages, because they are hard coded.
3303174: Installer hangs on linux. Updated version of IzPack compiler to 4.3.4.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|