/**
* Show the Data Storm window and fire a sql query automatically.
*/
public void show(Connection connection, String sql) {
try {
IController controller = new Controller(connection);
View view = new View(controller);
controller.setView(view);
controller.startUp(sql);
}
catch(SQLException e) {
e.printStackTrace();
}
}