Home Answers Viewqa JSP-Servlet java servlets with database interaction

 
 


pathan jilani
java servlets with database interaction
1 Answer(s)      2 years and 3 months ago
Posted in : JSP-Servlet

hai friends i am doing a web application in that i have a registration page, after successfully registered it has to display a message like "you have successfully registered" and those values should be saved in to the database.but i am getting an exception like "not enough values" can you please assist how to get rid of this problem what problem i have done if you want i can send sample code.

mycode

import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.sql.*; public class RNewReg extends HttpServlet {
public void doGet(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException { PrintWriter out=res.getWriter(); res.setContentType("text/html"); try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection c=DriverManager.getConnection("jdbc:odbc:online","system","manager"); Statement st=c.createStatement();

           String user=req.getParameter("uid");
           String passwd=req.getParameter("pw");
           String repass=req.getParameter("rpw");  
           String fname=req.getParameter("fname");
           String mname=req.getParameter("mnane");
           String lname=req.getParameter("lname");                                 
           int mobile=Integer.parseInt(req.getParameter("mobile"));
           int land=Integer.parseInt(req.getParameter("land"));
           String email=req.getParameter("email");             
           String empid=req.getParameter("empid");
           String compemail=req.getParameter("compemail");

           ResultSet rs=st.executeQuery("select userid from RUsersInfo");
           boolean exist=false;
           while(rs.next())
           {
                    if(rs.getString(1).equals(user))
                           exist=true; 
           }
           out.println("<html>");
           if(exist==false)
           {
           int i=st.executeUpdate("insert into rusersInfo values('" + user +"','" + passwd + "','"+repass+"," + fname + "','" + mname + "','" + lname + "','" + mobile + "','"+ land+"','" + email+"','"+ empid + "','" + compemail + "')");

           out.println("<body bgcolor=\"lightyellow\">");
           out.println("<form action=\"./regusers.html\">");
           out.println("<font size=4 color=blue>");
           out.println(user + " is Created");
           out.println("<br><input type=submit name=b2 value=Next>");
           out.println("</font></form></body>");
           }
           else
           {
                    out.println("<body bgcolor=lightyellow><font size=4 color=red> Sorry!. An User with " + user +
                    " is already existing.Please Choose another login ID.");
                    out.println("<br><a href=\"newusers.html\">Back..</a>");
                    out.println("</font></body>");                        
           }
           out.println("</html>");
           st.close();
           c.close();
      }
      catch(Exception e)
      {

         out.println(e.toString());
      }
 }
 public void doPost(HttpServletRequest req,HttpServletResponse res)
 throws ServletException,IOException
 {
    doGet(req,res);
 }

}

View Answers

February 8, 2011 at 11:42 AM


Connect Servlet with database and insert data

import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.sql.*;

public class InsertServlet extends HttpServlet { 
    public void doPost(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException {
        res.setContentType("text/html");
        PrintWriter out = res.getWriter();
        String name=req.getParameter("name");
        String pass=req.getParameter("pass");
        String address=req.getParameter("address");
int no=Integer.parseInt(req.getParameter("no"));
String gender=req.getParameter("gender");
String country=req.getParameter("country");
try{
Class.forName("com.mysql.jdbc.Driver");
           Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/test", "root", "root");
           Statement st=con.createStatement();
           int i=st.executeUpdate("insert into mail(name,password,address,telno,gender,country) values('"+name+"','"+pass+"','"+address+"',"+no+",'"+gender+"','"+country+"')");
         out.println("Data is inserted successfully");
         con.close();
        }
catch(Exception e){
    System.out.println(e);
}
            }
        }

For more information, visit the following link:

Servlet Tutorials









Related Pages:
java servlets with database interaction
java servlets with database interaction  hai friends i am doing a web application in that i have a registration page, after successfully registered... Servlet with database and insert data import java.io.*; import
servlets
servlets  what is ResultSet?   ResultSet is a java object that is used for database connectivity to hold the data returned by a select query. When we run a select query it returns us the data in a table format with each
RFID Interaction with Database - MobileApplications
RFID Interaction with Database  Can anyone help me with connecting a rfid reader with a database such that any one who comes in the range of my RFID reader its value gets in the database or it checks with tha database
servlets
package supports the development of servlets that use the HTTP protocol. The classes... javax.servlet.GenericServlet and serves as the base class for HTTP servlets. HttpServlet-Request and HttpServletResponse allow additional interaction with the client. Finally, since
Servlets
Servlets  Java Servlet technology  You have set.... Anyways, please visit the following links: http://www.roseindia.net/servlets/introductiontoconfigrationservlet.shtml http://www.roseindia.net/servlets
servlets
servlets  hi i am using servlets i have a problem in doing an application. in my application i have html form, in which i have to insert on date... into java.sql.Date type and insert into database
servlets
what are filters in java servlets  what are filters in java   Filters are powerful tools in servlet environment. Filters add certain functionality to the servlets apart from processing request and response paradigm
Servlets
connectionUrl = ("jdbc:sqlserver://localhost:1433;database=sree;integratedSecurity... it correct program to insert and update the database table record   We...://localhost:1433;database=sree;integratedSecurity=true"); Connection con
servlets
, visit the following links: http://www.roseindia.net/help/java/d/requestdispatcher.shtml http://www.roseindia.net/tutorial/java/servlet/httprequest
Servlets
"); String connectionUrl = ("jdbc:sqlserver://localhost:1433;database=sree...:1433;database=sree;integratedSecurity=true"); Connection con
Servlets
Servlets  servlet code to accept client details and store it in the database   Hi Friend, Try the following code: 1)insert.jsp: <%@page import="java.sql.*"%> <html> <form method="post" action
servlets
the following links: http://www.roseindia.net/tutorial/java/jsp/URLrewriting.html
Servlets
ConnectionUrl = ("jdbc:sqlserver://localhost:1433;database=sree;integratedSecurity
Servlets
:sqlserver://localhost:1433;database=sree;integratedSecurity=true
SERVLETS
://localhost:1433;database=sree;integratedSecurity=true"); Connection con
Servlets
"); String connectionUrl = ("jdbc:sqlserver://localhost:1433;database
database and servlets
database and servlets  how can get the questions from a database and use it as questions for a form. and present one question per page. its for a tomcat server
servlets
servlets  how can I run java servlet thread safety program using tomcat server? please give me a step by step procedure to run the following program my program is A DEMO PROGRAM FOR THREAD SAFETY. package serv; import
servlets - Java Beginners
servlets   Q: i write program to upload image into perticular folder.but i want to store that path into database but not image and display that image in page from the db.pls any one send me code for that in servlets asap.pls
java Servlets - JSP-Servlet
java Servlets  Hi i am having a doubt regarding servlets as i am in learning stage give me any clew how to retrive data from mysql database after... the database. out.println(""); out.println(""); out.println
java servlets - JDBC
java servlets  First thank you sir for your reply sir i am using "Oracle Database" it asking for 1.User Name 2.Password 3.Host String if we... that situation how i am connect to the "Oracle Database"  when u r installing
Java Servlets - Java Interview Questions
Java Servlets  1.What is Pojo class? How and where it is used? 2.Can... where can i download NetBean 5.5.1?  Pojo class is normal java... " THE JAVA CLASS CANNNOT EXTENDS ANY PREDEFINED THIRDPARTY API CLASS OR INTERFACE". 3
JSP-Servlets-JDBC
.. It will be helpful if it's made into sub modules, JSP, Driver Constants, Servlets, Java Beans...JSP-Servlets-JDBC  Hi all, 1, Create - i want sample code... to the database table using JDBC and DAO. 2, View - The table created in the database
Accessing Database from servlets through JDBC!
Java Servlets - Downloading and Installation         Java Servlets are server... and reusability issues make it less than optimal solutions. Java Servlets changes
servlets - Servlet Interview Questions
a user is allowed to access a page.  Hi Insert into database...;  This is java code. Insert into database function validateForm(theForm
java servlets
java servlets  please help... how to connect java servlets with mysql i am using apache tomcat 5.5
Help needed on java standalone app and default browser interaction.
Help needed on java standalone app and default browser interaction.  Hi Developers and tutors, Is anyone able to guide on how am i able to extract the url thats displaying on my default browser to my java standalone application
The Advantages of Servlets
Advantages of Java Servlets      ... that the servlets are written in java and follow well known standardized APIs so... scalable.  Safety As servlets are written in java, servlets inherit
Accessing Database from servlets through JDBC!
; This article shows you how to access database from servlets...;Java Web Server. For the sake of simplicity I have used Microsoft Access Database as backend and Sun's JDBC-ODBC bridge to connect to access
Servlets Vs Jsp - JSP-Servlet
the Servlet Protocol. Servlets and Java Server Pages are complementary APIs, both...Servlets Vs Jsp  In servlets and Jsp's which one is important? and also tell me the Is Servlets are best or jsp's are best? give me the(reason also
Servlets with Extjs
Servlets with Extjs  how to integrate servlets and extjs and also show database records in extjs grid using servlet how to get servlets json response. Can any one please help me
What is Java Servlets?
What is Java Servlets?      ... enabled web server. Servlets run entirely inside the Java Virtual Machine. Since.... Servlets can access the entire family of Java APIs, including the JDBC API
Building Search Engine Applications Using Servlets !
using Java Servlets. You can Download the source code of search engines and modify it according to requirement. Java Servlets... these days. This search engine shows you how to use Java Servlets
Java Servlets
Java Servlets  If the binary data is posted by both doGet and doPost then which one is efficient?Please give me some example by using both doGet and doPost. Thanks in Advance   The doPost method is more efficient
Servlets Books
, conference speaker on servlets and JSP (JavaOne, International Conference for Java...;   Java Servlets Programming Aimed... to program dynamic Web content using Java Servlets, with a fine introduction
servlets - Servlet Interview Questions
what is servlets in Java  what is servlets in Java
java servlets - Java Beginners
java servlets  hai my question is on xml documentation in creation of a java servlets. whether we have to create for each and every servelet we have to create each xml documentation?   Hi friends Exactly what you
java j s p and servlets - Servlet Interview Questions
java j s p and servlets  how to handle data from a select box store them back to database through servlet  Hi friend, For solving the problem visit to : http://www.roseindia.net/servlets/SelectColor.shtml
servlets - Java Beginners
to respond to HTTP requests. A JSP layered on top of Java Servlets. Whereas...servlets  what is the difference b/w servlets and JSP, what servlets..., The Java Servlet is the fundamental component to using Java for web
servlets - Java Interview Questions
html and processing in servlets and store in DB like ORACLE. And next i want to retrieve this image into web page using servlets. please try to send the answer to me servlets. i was not strong otherthan this. so please send me answer using
How to export web page to excel using java or jsp or servlets
errors. Please can anyone tell me how to do this using java or jsp or servlets...How to export web page to excel using java or jsp or servlets  Hi I am trying to export web page(jsp page ) to excel using jsp or servlets. I am
servlets bulk - Java Beginners
servlets bulk  Hi, My problem is " i want to send a one mail to many persons(i.e.,same mail to many persons) using servlets". Pls help me.  Hi Friend, Please visit the following links: http
servlets mails - Java Beginners
servlets mails  Hi, My problem is " i want to send a one mail to many persons(i.e.,same mail to many persons) using servlets". Pls help me.  Hi Friend, Please visit the following links: http
servlets - Java Beginners
servlets   I am doing small project in java on servlets. I want to generate reports on webpage ,how is it possible and what is the difference between dynamic pages & reports ? tell me very urgent pls,pls
Servlets - JDBC
Java Servlet Documentation  Can anyone please provide the Java Servlet Documentation.  hi Now, run the give code.ConnectionDatabase.javaimport java.io.*;import java.util.*;import java.sql.*;import javax.servlet.*;import
Servlets mysql connectivity
Servlets mysql connectivity  please tell me the steps to connect mysql with java servlets using connector j
servlets - Java Beginners
servlets  Hello! am doin my servlet course at niit, i want know in detail methods of servlets,and where can we implement it i.e. i want to know the examples of the methods used in it. what is getInParameter(); does.please
Servlets - Java Interview Questions
and are available to all the servlets within that application. It represents your web... are specified for a particular servlet and are unknown to other servlets... information visit to : http://www.roseindia.net/servlets/ServletContext.shtml

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.