how to connect program to database
Sir i want ur help in my program. I want to save the data in the database. When i'll click on save button the entered data must be save in the database.
I want an action performed method for this.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.sql.*;
public class New_Cust extends JFrame implements ActionListener
{
JLabel l1,l2,l3,l4,l5,l6;
JTextField tf1,tf2,tf3,tf4,tf5,tf6;
JButton b1,b2;
JPanel p;
JFrame f;
New_Cust()
{
l1 = new JLabel("Customer Name");
tf1 = new JTextField(5);
l2 = new JLabel("Alias Name");
tf2 = new JTextField(5);
l3 = new JLabel("Address");
tf3 = new JTextField(5);
l4 = new JLabel("Phone No.");
tf4 = new JTextField(5);
l5 = new JLabel("Mobile No.");
tf5 = new JTextField(5);
l6 = new JLabel("E-Mail");
tf6 = new JTextField(5);
b1 = new JButton("SAVE");
b1.setBackground(Color.GRAY);
b2 = new JButton("CANCEL");
b2.setBackground(Color.GRAY);
b1.addActionListener(this);
b2.addActionListener(this);
f = new JFrame();
f.setSize(600,600);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
p = new JPanel();
p.setLayout(null);
p.setBackground(Color.red);
l1.setBounds(100,100,200,30);
tf1.setBounds(250,100,200,30);
l2.setBounds(100,150,200,30);
tf2.setBounds(250,150,200,30);
l3.setBounds(100,200,200,30);
tf3.setBounds(250,200,200,30);
l4.setBounds(100,250,200,30);
tf4.setBounds(250,250,200,30);
l5.setBounds(100,300,200,30);
tf5.setBounds(250,300,200,30);
l6.setBounds(100,350,200,30);
tf6.setBounds(250,350,200,30);
b1.setBounds(100,400,150,30);
b2.setBounds(300,400,150,30);
p.add(l1);
p.add(tf1);
p.add(l2);
p.add(tf2);
p.add(l3);
p.add(tf3);
p.add(l4);
p.add(tf4);
p.add(l5);
p.add(tf5);
p.add(l6);
p.add(tf6);
p.add(b1);
p.add(b2);
f.add(p);
}
public static void main(String args[])
{
New_Cust nc = new New_Cust();
}
}
View Answers
Ads
Related Tutorials/Questions & Answers:
how to connect program to database
how to
connect program to database Sir i want ur help in my
program. I want to save the data in the
database. When i'll click on save button the entered data must be save in the
database.
I want an action performed method
Advertisements
how to connect to MS access database in JSP?
how to
connect to MS access
database in JSP?
how to
connect to MS access
database in JSP? Any seetings/drivers need to be set or installed before it? Please tell what needs to be done after creating a table with an example
TO connect multiple database
TO
connect multiple database
How to
connect several
database from a single application in java depending upon the user input it will
connect to that
database
How to connect
How to connect
how to
connect to a remote host using jsp? We need to update files to the
database of the application on the local machine from the updated
database on our webpage
How to connect to MySql Database from Servlet?
;
font-weight: bold;
}
How to
connect to MySql
Database from Servlet... will show you
how to
connect to
MySQL
database and perform select operation. You will learn the JDBC steps
necessary to
connect to the MySQL
Database and execute
Connect database in Access to Netbean?
Connect database in Access to Netbean?
how to
connect database in micrsoft access to Netbean?i know it can be connected by using JDBC-ODBC bridge, can i know the steps in connecting the
database?
Is there any source code
Using Network Address To Connect to a Database
.style1 {
text-align: center;
}
How To Use Network Address To
Connect... to
connect a MySql
database with your application over a
network then you must load... is "root"
An example of using network address to
connect to
database
How to connect to MySQL in JSP?
How to
connect to MySQL in JSP?
How to
connect to MySQL in JSP...,
You can use the Java JDBC code to
connect to MySQL
database in JSP page. Check the tutorial:
Connect JSP with mysql
Thanks
unable to connect database in java
unable to
connect database in java Hello Everyone! i was trying to
connect database with my application by using java but i am unable to
connect...
i was using this code....
try
{
Driver d=(Driver)Class.forName
unable to connect database in java
unable to
connect database in java Hello Everyone! i was trying to
connect database with my application by using java but i am unable to
connect...
i was using this code.
try
{
Driver d=(Driver)Class.forName
How to connect to MySQL from command prompt?
How to
connect to MySQL from command prompt?
This video tutorial walks you... of: "
How to
connect to MySQL from command prompt?"
Then is sure... from the command prompt.
To
connect to MySQL
database from command prompt use
connect ftp from java program
connect ftp from java program Hi,
I need to
connect to the ftp and get the files through a java
program..
I wrote the following code...
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile
connect ftp from java program
connect ftp from java program Hi,
I need to
connect to the ftp and get the files through a java
program..
I wrote the following code...
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile
how to connect jdbc
how to
connect jdbc package com.tcs.ilp.Try.Controller;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import