X-Git-Url: http://secure.phpeclipse.com

diff --git a/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/view/SchemaSelectionControl.java b/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/view/SchemaSelectionControl.java
index 4a7fa72..c6e21cf 100644
--- a/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/view/SchemaSelectionControl.java
+++ b/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/view/SchemaSelectionControl.java
@@ -19,6 +19,7 @@ import com.quantum.model.ConnectionException;
 import com.quantum.model.NotConnectedException;
 import com.quantum.model.Schema;
 import com.quantum.ui.dialog.ExceptionDisplayDialog;
+import com.quantum.ui.dialog.SQLExceptionDialog;
 import com.quantum.ui.dialog.SimpleSelectionDialog;
 import com.quantum.util.connection.ConnectionUtil;
 
@@ -273,7 +274,7 @@ public class SchemaSelectionControl extends Composite {
         } catch (ConnectionException e) {
             ExceptionDisplayDialog.openError(getShell(), null, null, e);
         } catch (SQLException e) {
-            ExceptionDisplayDialog.openError(getShell(), null, null, e);
+            SQLExceptionDialog.openException(getShell(), bookmark, e);
 		}
     }