Home Answers Viewqa Java-Beginners Swings and JDBC

 
 


Vinay KP
Swings and JDBC
1 Answer(s)      2 years and 3 months ago
Posted in : Java Beginners

Hi.. I am vinay.. I am developing a small application using swings and mysql. I am sending part of the code here..

The problem is i need to update the mysql fields with values which are gettin from dynamiclly created JTextfields... but i am not getting how i can fetch those particular values and update database with those value.....

Please help me..

My work is paused here... please

Here the code....

package kp;

import java.awt.*; import java.util.regex.*;

import java.awt.event.*;

import javax.swing.*;

import java.io.*; import java.net.*; import java.util.*; import java.sql.*; import java.lang.*; public class attend extends JFrame{

private JLabel jLabel1;
private JButton jButton1;
private JTextField jTextField2;
private JPanel contentPane;
private JTextField jTextField1;
final Vector columnNames = new Vector();
final Vector data = new Vector();
Vector row;
final Object g=new Vector();

public attend()
{
        super();

    initializeComponent();

    this.setVisible(true);
}

private void initializeComponent()
{
    jLabel1 = new JLabel();
    jButton1 = new JButton();
    jTextField1 = new JTextField(20);
    //jTextField1.setName("att");
    contentPane = (JPanel)this.getContentPane();
    contentPane.setBackground(Color.pink);
    jLabel1.setText("ATTENDANCE");


    jButton1.setText("Submit");


    try{
        Connection con = null;
        Class.forName("com.mysql.jdbc.Driver");
        con = DriverManager.getConnection("jdbc:mysql://localhost/vinay", "root", "admin");
        Statement st = con.createStatement();
        ResultSet rs= st.executeQuery("Select * from student");
        ResultSetMetaData md = rs.getMetaData();
        int columns = md.getColumnCount();
        for (int i = 1; i <= columns; i++) 
        {
        columnNames.addElement( md.getColumnName(i) );
        }
        while (rs.next()) {
        row = new Vector(columns);
        for (int i = 1; i <= columns; i++) 
        {
            row.addElement( rs.getObject(i));
            if(i==4)
            {
                row.addElement(jTextField1);
            }

        }
        data.addElement( row );
        //

        }
        String k=jTextField1.getText();
        System.out.println(k);
        rs.close();
        st.close();
        }
        catch(Exception e) {}
        JTable table = new JTable(data, columnNames);
        JScrollPane scrollPane = new JScrollPane( table );
    contentPane.setLayout(null);
    addComponent(contentPane, scrollPane, 5,110,200,200);
addComponent(contentPane, jLabel1, 50,1,345,37);
addComponent(contentPane, jButton1, 220,300,100,28);
this.setTitle("Class Attendance");
this.setLocation(new Point(66, 48));
this.setSize(new Dimension(438, 384));

jButton1.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e)
    {
        Vector z=new Vector();
        //System.out.println(data.get(2));
        //System.out.println(row.elementAt(3));
            //g=data.get(4);
            //System.out.println(g);
        try{
            int i;
            String sql=null;
            Connection con = null;
            //ResultSet rs=null;
            Class.forName("com.mysql.jdbc.Driver");
            con = DriverManager.getConnection("jdbc:mysql://localhost/vinay", "root", "admin");
            if(con!=null)
            {
            System.out.println("connectin established");
            }
            Statement st = con.createStatement();
            for(i=3;i>0;i-=3)
            {
                System.out.println(row.get(i));
                 String a=(String) row.get(i);
                Pattern p=Pattern.compile("^p");
                Matcher m=p.matcher(a);
                if(m.find())
                {
            sql="update student set attend='"+a+"'";
            System.out.println(sql);
            st.executeUpdate(sql);
                }
            }

            st.close();
            con.close();
            }
            catch(Exception e1) {}
        }


});
}

private void addComponent(Container container,Component c,int x,int y,int width,int height)
{
    c.setBounds(x,y,width,height);
    container.add(c);
}

}

View Answers

February 3, 2011 at 12:33 PM


Hi Friend,

Please visit the following link:

Add Edit Delete Application

Hope that it will be helpful for you.

Thanks









Related Pages:
Swings and JDBC
Swings and JDBC  Hi.. I am vinay.. I am developing a small application using swings and mysql. I am sending part of the code here.. The problem is i...("com.mysql.jdbc.Driver"); con = DriverManager.getConnection("jdbc:mysql://localhost/vinay
how to connect swings with jdbc... - Java Beginners
how to connect swings with jdbc...  Hi friends, Is it possible, to connect swings with data base like oracle....i want to store data into database... by using servlets and jsp but is it possible by using swings........ for data base
java code using swings
java code using swings  code that should be able to enter data of student details using all swings into the access database using jdbc connectivity
SWINGS
SWINGS  WHAT ARE THE DIFFERENCES BETWEEN AWT AND SWINGS
Beans in Swings table
Beans in Swings table  Hi Sir/Madam.... I am Trying Develop an Swing from which include an table which displays the data from mysql table and i am...("com.mysql.jdbc.Driver"); Connection con = DriverManager.getConnection("jdbc:mysql
swings - Java Beginners
swings   how t upload images in swings. thanks   Hello Friend, Try the following code: import java.io.*; import java.sql....); try{ Connection con = null; String url = "jdbc:mysql
swings - Java Beginners
"); Connection connect =DriverManager.getConnection("jdbc:mysql://localhost
Swings - Java Beginners
=text2.getText(); Connection con = null; String url = "jdbc:mysql://localhost:3306
Swings - Java Beginners
; JButton button; static JPanel panel; String connectionURL = "jdbc:mysql
java swings - Java Beginners
(); String value2=text2.getText(); Connection con = null; String url = "jdbc...=text5.getText(); Connection con = null; String url = "jdbc:mysql
Swings - Java Beginners
= "jdbc:mysql://localhost:3306/"; String db = "test"; String driver... = null; String url = "jdbc:mysql://localhost:3306/"; String db = "test
java swings - Java Beginners
value6=text5.getText(); Connection con = null; String url = "jdbc:mysql
Swings - Java Beginners
(); Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/test
swings - Java Beginners
("com.mysql.jdbc.Driver"); Connection con = DriverManager.getConnection("jdbc:mysql
JSP & Swings
JSP & Swings  How to integrate jsp and swings
swings question
swings question  how to change the background color with the help of color values by using swings
jdbc problem
jdbc problem   hi my name is mohit...i am making a project in java swings....pls help me how to check that the username and password are correct... a lot... 1)login page(this is made in swings) public class loginpage extends
swings for webnms
swings for webnms  if i am expanding node of jtree then i want to collapse previous expanding node of jtree in swings how is it possible
Swings JTable
Swings JTable  add values to JTable with four coloums,two of them are comboboxes
How to put the logo in login form using swings/awt?
How to put the logo in login form using swings/awt?  Hi, How to put the logo in login form using swings/awt? I write the login form is working...("com.mysql.jdbc.Driver"); Connection con = DriverManager.getConnection("jdbc
Swings & JSP
Swings & JSP  Hai all, Can we use Swing components in a JSP?? Suppose if we enter details in a swing dialog box..and If we want the result in a JSP..is that possible??? Thank you
Java Code - JDBC
Java Code  Write a Java Program using Swings that Keep track of Customer Information in Banks. Make This program using JMenuBar With Menus(Customer,Transcation,Print) Custmer Menu: for entering customer information Transcation
Java Swings
Java Swings  I am doing one project on java Swings, in this i have created one jframe where i defined some JButtons and Jcombobox's, here i need to insert one JTable with headers(IN CURRENT JFrame only).pls help me urgently
swings header
swings header   have a string1 it contains 3 parts,for example "123456 service hello" and string2 contains text "change request " like this. and the string3 should contain "123456 +(second string)+ hello" "second string can
Java Code - JDBC
Java Code  Write a Program using Swings that Manages the employee database and payroll Having JMenuBar containg following Menus 1)Employee Menu: for adding new employee,display employee,delete employee. 2)Edit Menu
Swings - Applet
Swings  Sir, I have developed an application in swings i want to call that class in applet. is it possible. or otherwise is there any way to deploy java class in browser. Give an example... Thanks in advance...  Hi
java swings - Java Beginners
java swings   Do you want to add textfields on the JPanel
Image Movement using Swings
Image Movement using Swings  How to move image using Swings
how to create frame in swings
how to create frame in swings  how to create frame in swings
Java Program - JDBC
Java Program  Write a Java Code using swings and display records from...("sun.jdbc.odbc.JdbcOdbcDriver"); Connection con = DriverManager.getConnection("jdbc:odbc:access... = DriverManager.getConnection("jdbc:odbc:access"); Statement st
Swings/awt - Swing AWT
Swings/awt  Hi, how to write action listeners to the Buttons in RichTextEditor tool bar.. thanks in advance...it's Urgent... i am very much new to Swings
jdbc
jdbc  display the records using index in jdbc
jdbc
jdbc  Hai , Give a steps for jdbc connectivity
JDBC
JDBC  why we use batch in jdbc

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.