public class MyApp {
java.sql.Connection conn;
public MyApp(String args[]) {
JMyInternalFrame f = new ...
f.setVisible(true);
}
}
public class JMyInternalFrame extends JInternalFrame {
public void MyConnect() {
// Class.forName("org.apache.derby.jdbc.EmbeddedDriver");
// Connection conn = DriverManager.getConnection("jdbc:derby:COFFEES");
// etc...
}
}