Home Answers Viewqa JDBC in registration page,hw the details wil b stored in db,n retrieved.....

 
 


Sandhya.B
in registration page,hw the details wil b stored in db,n retrieved.....
2 Answer(s)      a year and 10 months ago
Posted in : JDBC

1)in registration page,when new user register his details,hw the details will b stored in db....(i knw hw to do it bt i ve some doubts in it),so plz give me the code in detail plzzz.....2)n hw do v knw whether that details r inserted in db(do v need to write select query in d same pgm)?

and here is my code tthe above query...i thk thr r some mistakes in ths,plz find out n tel me the mistake i ve done... ' <% try { Class.forName(driver);

con = DriverManager.getConnection(url + db, user, pass); statement stmt=con.createstatement(); string uname=request.getparameter("username"); string pass=request.getparameter("pasword"); int count=stmt.executeUpdate("insert into abc(username,password) values("+uname+","+pass+"); if(count>0) { out.println("successful"); } else { out.println("unsucce..."); } } catch { .... }

also 3)code for retreiving the data frm db(tel me with statement n prepared stmt seperatly plzz...)...

4) actually i ve no data in db,after inserting user details only the data will b inserted in db,so hw to retrive that....

plzzz give the codes for all the abv 4 queries in detail,seperatly plzzz...

View Answers

July 13, 2011 at 11:18 AM


1)form.jsp:

<html>
<form method="post" action="insert.jsp">
<table>
<tr><td>First Name:</td><td><input type="text" name="fname"></td></tr>
<tr><td>Last Name:</td><td><input type="text" name="lname"></td></tr>
<tr><td>Email:</td><td><input type="text" name="email"></td></tr>
<tr><td>Password:</td><td><input type="password" name="pass"></td></tr>
<tr><td>Confirm Password:</td><td><input type="password" name="cpass"></td></tr>
<tr><td>Date Of Birth</td><td><input type="text" name="dob"></td></tr>
<tr><td>Age:</td><td><input type="text" name="age"></td></tr>
<tr><td>Gender</td><td><input type="text" name="gender"></td></tr>
<tr><td>Address:</td><td><input type="text" name="address"></td></tr>
<tr><td>Country</td><td><input type="text" name="country"></td></tr>
<tr><td>State:</td><td><input type="text" name="state"></td></tr>
<tr><td>City</td><td><input type="text" name="city"></td></tr>
<tr><td>Telephone No:</td><td><input type="text" name="tno"></td></tr>
<tr><td>Mobile:</td><td><input type="text" name="mobile"></td></tr>
<tr><td></td><td><input type="submit" value="Submit"></td></tr>
</table>
</form>
</html>

2)insert.jsp:

<%@page import="java.sql.*,java.util.*"%>
<%
String fname=request.getParameter("fname");
String lname=request.getParameter("lname");
String email=request.getParameter("email");
String pass=request.getParameter("pass");
String cpass=request.getParameter("cpass");
String dob=request.getParameter("dob");
int age=Integer.parseInt(request.getParameter("age"));
String gender=request.getParameter("gender");
String address=request.getParameter("address");
String country=request.getParameter("country");
String state=request.getParameter("state");
String city=request.getParameter("city");
int telephone=Integer.parseInt(request.getParameter("tno"));
int mobile=Integer.parseInt(request.getParameter("mobile"));
        try{
         Class.forName("com.mysql.jdbc.Driver");
           Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/roseindia", "root", "root");
           Statement st=con.createStatement();
           int i=st.executeUpdate("insert into student(firstname,lastname,email,pass,confirm_pass,dob,age,gender,address,country,state,city,telephone,mobile) values('"+fname+"','"+lname+"','"+email+"','"+pass+"','"+cpass+"','"+dob+"',"+age+",'"+gender+"','"+address+"','"+country+"','"+state+"','"+city+"',"+telephone+","+mobile+")");
        out.println("Data is successfully inserted!");
        }
        catch(Exception e){
        System.out.println(e);
        e.printStackTrace();
        }
        %>

If the values will get inserted then you will get the message on the browser 'Data is successfully inserted' as we have specified in the above code.


July 13, 2011 at 11:39 AM


Retrieve data using Statement

<%@page import="java.sql.*"%>
<table border=1>
<%
Class.forName("com.mysql.jdbc.Driver").newInstance();  
 Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/roseindia","root","root");  
Statement st=con.createStatement();
ResultSet rs=st.executeQuery("Select * from student");
if(rs.last()){
    %>
<tr><td><%=rs.getString(1)%></td><td><%=rs.getString(2)%></td><td><%=rs.getString(3)%></td><td><%=rs.getString(4)%></td><td><%=rs.getString(5)%></td><td><%=rs.getString(6)%></td><td><%=rs.getString(7)%></td><td><%=rs.getString(8)%></td><td><%=rs.getString(9)%></td><td><%=rs.getString(10)%></td><td><%=rs.getString(11)%></td><td><%=rs.getString(12)%></td><td><%=rs.getString(13)%></td><td><%=rs.getString(14)%></td></tr>
<%
}
%>
</table>

Retrieve data using PreparedStatement

<%@page import="java.sql.*"%>
<table border=1>
<%
Class.forName("com.mysql.jdbc.Driver").newInstance();  
 Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/roseindia","root","root");  
PreparedStatement pst=con.prepareStatement("Select * from student");
ResultSet rs=pst.executeQuery();
if(rs.last()){
    %>
<tr><td><%=rs.getString(1)%></td><td><%=rs.getString(2)%></td><td><%=rs.getString(3)%></td><td><%=rs.getString(4)%></td><td><%=rs.getString(5)%></td><td><%=rs.getString(6)%></td><td><%=rs.getString(7)%></td><td><%=rs.getString(8)%></td><td><%=rs.getString(9)%></td><td><%=rs.getString(10)%></td><td><%=rs.getString(11)%></td><td><%=rs.getString(12)%></td><td><%=rs.getString(13)%></td><td><%=rs.getString(14)%></td></tr>
<%
}
%>
</table>









Related Pages:
in registration page,hw the details wil b stored in db,n retrieved.....
in registration page,hw the details wil b stored in db,n retrieved.....  1)in registration page,when new user register his details,hw the details will b stored in db....(i knw hw to do it bt i ve some doubts in it),so plz give me
after entering details in reg page,n enter the submit button,how can v store the data in db, n hw can v retrive the data frm db in jsp
after entering details in reg page,n enter the submit button,how can v store the data in db, n hw can v retrive the data frm db in jsp  i ve creted registration page n login page. after entering details in reg page,n enter
Develop user registration form
retrieved from the registration form. To stored the data into the database it uses... user registration jsp page.  In this example we will create a simple... User Registration Form in JSP     
JDBC Connection and Registration
stored in database. How to validate user registration. Thanks in advance... the Create table in Design view. 3)Fill out the details in the "Field Name...); } } } Validate User Registration
HTML(Registration form) to Jsp to stored into MS ACCESS database
HTML(Registration form) to Jsp to stored into MS ACCESS database  i am sending one html file that contain 18 fields these are stored in ms-access... you for waiting that code. This is My Html page Link
user registration
user registration  hi frnds...am working on a project in JSP.i want to create a user registration form with username,password,mail id and check box option for community selection.once the details are registered i want to save
advantage of stored programs
advantage of stored programs  Which of the following is an advantage of stored programs? a) Reliability b)Reduction in operation costs c) The computers becoming general purpose D) All of the above E) None of these  
Registration page with JavaScript Validation
Registration page with JavaScript Validation   HTML Registration page with JavaScript Validation - required source code   Registration page in HTML with JavaScript Validation source code <html> <head>
initializing B+ tree from Jtable - JDBC
initializing B+ tree from Jtable   hi, i have fixed-length data file such student table.i stored this file in Jtable All fields are fixed length: 8... i can Initially, constructed B+ tree based from this Jtable. and make initial
REQ for connection b/w jdbc and oracle database
REQ for connection b/w jdbc and oracle database    REQ for connection b/w jdbc and oracle database    The Java classes to connect... be freely downloaded from Oracle's site (free registration is required). You can
Stored Procedures and Functions
Stored Procedures and Functions       Stored Routines (Procedures and Functions) are supported in version MySQL 5.0. Stored Procedure is a set of statements, which allow ease
Developing User Registration Form
page confirms the successful completion of user registration. Here is the code... Developing User Registration Form   ... necessary to develop the User Registration Form for our Struts, Hibernate and Spring
c programming..what wil be the output of this program
c programming..what wil be the output of this program   #include int main() { int arr[] = {0,1,2,3,4}; int i,*ptr; for (ptr=arr+4; ptr= arr; ptr--) { printf("%d",*ptr
how to retrive other details with an image - Swing AWT
how to retrive other details with an image  hello I m trying...("Select visitor_firstname,Type_code, image_data from visiting_details where Ticket... retrieved three values from database i.e, name,address and photograph. We have
upload file and insert other details to database using a single form
which I retrieved from another jsp/html page. Here i was able to upload file but my other details seem to be null...upload file and insert other details to database using a single form  
the value of $$b
the value of $$b  If the variable $a is equal to 5 and variable $b is equal to character a, what?s the value of $$b
Diff b/w servlet n jsp - Java Interview Questions
Diff b/w servlet n jsp  hii i want to know the difference between servlet and jsp. please give me the details to understand them in correct... for presentation after all JSP page also boil down to jsp servlet but presentation
HOW TO STORE MULTIPLE EMPLOYEE DETAILS TO XML FILE USING JSP?
HOW TO STORE MULTIPLE EMPLOYEE DETAILS TO XML FILE USING JSP?  HELLO SIR, CAN ANYONE HELP ME OUT HOW TO STORE MULTIPLE EMPLOYEE DETAILS TO XML FILES,IF I ENTER 4 EMPLOYEE DETAILS(NAME,ID,SALARY,EMAIL) ALL THE DETAILS OF 4
the last data entered into database is getting stored again after refreshing
the last data entered into database is getting stored again after refreshing  hey all i made a shout box using php and mysql but the last data entered into the DB is getting retrieved again as i refresh the page.. even
stored procedures
stored procedures  What are stored procedures
stored procedures
stored procedures  What are stored procedures
stored procedure
stored procedure  what is stored procedure
course registration
course registration  project for course registration system in java programming
registration application
registration application  How to develop a registration application in struts which has seperate file for database connection and data checking and form and action
student details
student details  create an application for details of 1st to 5th standard students by using loops and scanner
Stored procedures
in MySQL at Stored Procedures and Functions in MySQL tutorial page. Thanks...Stored procedures  hello What are stored procedures?   hello, A stored procedure is a set of statements or commands which reside
scjp details
scjp details  SCJP fees details abou scjp? What are the best books for preparing to scjp? How many time scjp exam's are conducted for one year
student details
student details  hi sir/madam i have a doubt in PHP how to insert student details using mysql with php..   Have a look at the following link: PHP Mysql insert
customer details
customer details  write a java code to enter n number of persons details(name,address,phone number) in a array list. Also consider exceptional cases like entering integer in name,character in phone number. use try,catch ,throw
Registration Form
Registration Form  Hi Friends I am Working on a small project.I have to create a Registration page using MVC pattern where i have to insert data username,password,date of birth,Mobile number number into database. How to insert
APLIANCE DETAILS
APLIANCE DETAILS  I have created a package named ApplianceDetails that contains the Appliance class. Now I want to create a class named NewAppliance that stores the details of the newly launched appliances.I used the following
Stored Data in XML File using Servlet
to stored data in xml file using Servlet  We have created  file login.jsp,XmlServlet.java. User details in the "login.jsp" are to be stored... Stored Data in XML File using Servlet  
Registration - Ajax
Registration  i want to create a registration page. in which User... me on this topic. How i can connect this registration page to data base. i am...;hi friend, registration form in jsp function checkEmail(email
REGISTRATION OF MBEAN
REGISTRATION OF MBEAN  my question is... i have installed jboss, and created a managed Bean(MBEAN)and provided interface and everything. but i dont know whether the service registerd in jmx or not. please suggest me
registration form
registration form  Hii.. I have to design one registration page in java that looks like REGISTER USERNAME (here i have to check whether username already exists in database) EMAIL ADDRESS (here i have to check whether email
User Registration Action Class and DAO code
;);    b) Checking for the New user Registration Following code... User Registration Action Class and DAO code... UserRegisterAction.java process the user registration request. It saves the user information
JSP data after login where different users data are stored in database
JSP data after login where different users data are stored in database  hey..i have a login page where different users first registered... where different users data are stored in database,plz...provide me answer its
this code will be problem it display the error again send jsp for registration form
this code will be problem it display the error again send jsp for registration form  I AM ENTERING THE DETAILS OFTER IT DISPLAY THE ERROR PLEASE...)insert.jsp: <%@page import="java.sql.*,java.util.*"%> <% String fname
this code will be problem it display the error again send jsp for registration form
this code will be problem it display the error again send jsp for registration form  I AM ENTERING THE DETAILS OFTER IT DISPLAY THE ERROR PLEASE...)insert.jsp: <%@page import="java.sql.*,java.util.*"%> <% String fname
Integrating Login And Registration Application In JSF
Integrating Login And Registration Application In JSF...; This tutorial explains integration of login and registration...; <%@ page contentType="text
what is the value of $$b?
what is the value of $$b?  If the variable $a is equal to 5 and variable $b is equal to character a, what?s the value of $$b
what?s the value of $$b?
what?s the value of $$b?  If the variable $a is equal to 5 and variable $b is equal to character a, what?s the value of $$b
java.lang.IllegalStateException: Writer already retrieved at - Ajax
java.lang.IllegalStateException: Writer already retrieved at   Hi, I am learning the AJAX.i did simple program.getting this error... Exception: java.lang.IllegalStateException: Writer already retrieved
b+ trees - UML
b+ trees  can i get entire documentation of b+ trees implementation in java
b+trees - UML
b+trees  i need use case diagrams,class diagrams and flowcharts for b+ trees urgently
B+ trees search
B+ trees search  Can anyone send the code for implementing the B+ trees searching on a oracle database? please your answer will be useful for my project
B+ trees search
B+ trees search  Can anyone send the code for implementing the B+ trees searching on a oracle database? please your answer will be useful for my project
to creating a registration form
to creating a registration form  how to create a registration form
deletion in b plus tree
deletion in b plus tree  please help me out!! i need a code for deletion on b-plus tree in JAVA. its urgent please help

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.