Database 2 « Development « Java Swing Q&A





1. searching through a database table from a java GUI    forums.oracle.com

i've created a java GUI using Netbeans which connects to a derby database. a table from this database is placed in my GUI, containing some text in all its rows. Now, i want to create a search function that will look for a given string of text through this table and output the results somewhere. can anyone please give me some ...

2. How to connect a ms access database to a swing application using netbeans.    forums.oracle.com

JFrame frame; public loggin() { initComponents(); // Center in the screen Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize(); Dimension frameSize = getSize(); setLocation(new Point((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.width) / 2)); } # IDE Generated Code # private void extActionPerformed(java.awt.event.ActionEvent evt) { int s = JOptionPane.showConfirmDialog(frame,"Are You Sure You want to Exit ?","Confirm Exit",JOptionPane.YES_NO_OPTION); if(s==0){System.exit(0);} else{}

3. Connecting a GUI to a Derby Database with NetBeans    forums.oracle.com

Hello, I did the tutorial, Connecting a GUI to a Derby Database. At: http://www.netbeans.org/kb/50/gui-database.html but I am getting the following error: JdbcRowSet (setTypeMap): Connection.setTypeMap is not supported Since I am pretty new to Java and NeyBeans, it is probably something pretty basic, that is causing the error. Thanks for your help. ps: one other thing I am trying to figure out ...

4. install swing application on server/desktop with database    forums.oracle.com

Hi, I developped a swing application which I need to install soon. It's the first time I install an application on my own, so any help would be welcome. I use maven for build, hibernate for the database access. Is there anything I need to take into consideration about the following things (are there good sites for reference?): - the build ...