Prezados,
Estou recebendo a seguinte exception:
E aqui embaixo está o código:
JTable table = new JTable();
try {
String tableName = "tb_monitor_pending";
connection = DriverManager.getConnection("jdbc:hsqldb:hsql://localhost/hub", "hipaas", "hipaas");
stmt = connection.createStatement();
rs = stmt.executeQuery("SELECT * FROM " + "hipaas." + tableName);
model = new ScrollingResultSetTableModel(rs);
table.setModel(model);
} catch (SQLException e3) {
// TODO Auto-generated catch block
e3.printStackTrace();
}
Alguém sabe o q está faltando ou melhor, o q está errado?
[]'s