JDBC « JFrame « Java Swing Q&A





1. Need Idea for implementing jdbc table of MS Access in Java Frame    stackoverflow.com

I am working on an project where an admin has to view, edit or delete the entries in the database i.e. MS Access which is connected by JDBC in Java frame. ...

2. jframe not accepting sql query..    coderanch.com

i have a project in which i have created an object of "showrecord" jframe inside the "collect" jframe.. the "showrecord" class display all the record from the database.. but it is showing an SQL error.. please help me solve the problem.. collect class import javax.swing.*; import javax.swing.border.*; import java.lang.String; import java.awt.*; import java.sql.*; import javax.swing.event.*; import java.awt.event.*; import java.util.*; import java.text.*; ...

3. using database connection in jframes    coderanch.com

Hi all, I created a simple UI that takes 2 inputs private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) { float num1, num2, result; num1 = Integer.parseInt(jTextField1.getText()); num2 = Integer.parseInt(jTextField2.getText()); result = num1-num2; jTextField3.setText(String.valueOf(result)); // TODO add your handling code here: } and my main is public static void main(String args[]) { java.awt.EventQueue.invokeLater(new Runnable() { public void run() { try { new NumberAdditionUI().setVisible(true); Class.forName("com.mysql.jdbc.Driver"); ResultSet ...