unable to retrive the data from mysql using servlet using jdbc driver
Hi, i have a servlet program..to verify the login and redirect to correct html page on verification.
public class LoginServlet extends HttpServlet implements javax.servlet.Servlet
{
public void doPost (HttpServletRequest request, HttpServletResponse response)
throws ServletException,IOException
{
// Get the requested name and the output writer.
PrintWriter out = response.getWriter ();
String username = request.getParameter("UserName");
String password = request.getParameter("Password");
//Used to instantiate a connection
Connection con = null;
String url = "jdbc:mysql://localhost:3306/";
String dbName = "rapax";
String driver = "com.mysql.jdbc.Driver";
String userName = "root";
String password1 = "ajay12";
Statement stmt = null;
ResultSet rs = null;
try
{
try
{
Class.forName(driver).newInstance();
}
catch(InstantiationException e)
{
}
catch(IllegalAccessException e)
{
}
con = DriverManager.getConnection((new
StringBuilder()).append(url).append(dbName).toString(),userName,password1);
System.out.println("Connected to the database");
stmt = con.createStatement();
rs = stmt.executeQuery("SELECT * FROM login where
username="+username+" and password="+password);
// displaying records
if(rs.next())
{
String uname=rs.getObject(1).toString();
String pwd=rs.getObject(2).toString();
response.sendRedirect("http://localhost:8080/sessionAction.html");
}
else
{
out.println("\n\nInvalid Login\n");
rs.close();
response.sendRedirect("http://localhost:8080/login.html");
}
// throw new IOException(new IOException("Error"));
}
catch (SQLException e)
{
}
catch (ClassNotFoundException e) {
}
finally
{
try
{
if(rs!=null)
{
try{
rs.close();
}
catch(NullPointerException e)
{
}
}
rs = null;
if(stmt!=null)
{
try
{
stmt.close();
}
catch(SQLException e)
{
}
}
stmt = null;
if(con!=null)
{
try
{
con.close();
}
catch(NullPointerException e)
{
}
}
con = null;
}
catch (SQLException e)
{
}
out.close();
}
}
public void doGet(HttpServletRequest request,HttpServletResponse response) throws
ServletException,IOException
{
doPost(request,response);
}
}
.i am unable to redirect..here is the code..pls help me THANK YOU
View Answers
October 25, 2011 at 12:38 PM
Related Tutorials/Questions & Answers:
Advertisements
Request URl using Retrive data from dtabaseRequest URl
using Retrive data from dtabase
Using With GWT
the user can create an event. In the create page, we have three buttons. Save as draft... the contents
from the db based on the event id. But this jsp url should
retrive data from database using jsp in struts? retrive data from database
using jsp in struts? *search.jsp*
<... searchProduct(SearchDTO sdto) {
String query="select *
from product...());
Connection con=DriverManager.getConnection("
jdbc:oracle:thin:@localhost:1521
get info from mysql using jsp and servlet the user to key in their email address
from mysql database by
using servlet and jsp too...get info
from mysql using jsp and servlet HELLO! I wanna create...;
String url = "
jdbc:
mysql://localhost:3306/";
String dbName = "register";
String
url parameter using retrive data from database in jspurl parameter
using retrive data from database in jsp the user can create an event. In the create page, we have three buttons. Save as draft... the contents
from the db based on the event id. But this jsp url should be a public
url parameter using retrive data from database in jspurl parameter
using retrive data from database in jsp The user can create an event. In the create page, we have three buttons. Save as draft... the contents
from the db based on the event id. But this jsp url should be a public url
Exporting data from mysql into csv using jspExporting
data from mysql into csv
using jsp Hi friends.... I want to export the
data from mysql to csv file
using... i am having 30 columns in my database.. Eg- text1,text2,text3,....,upto text30... i want to export this
data Unable to upload a file to mysql database using struts1Unable to upload a file to
mysql database
using struts1 Hi,
Below...=DriverManager.getConnection("
jdbc:
mysql://localhost/test","root","");
System.out.println...="multipart/form-
data">
Select a File :<html:file property="file"/>
<
Displaying Mysql clob data using ServletDisplaying
Mysql clob
data using Servlet
.In this Section, we will display a clob
data from a table of database
using
servlet. A CLOB is a Character Large... any portion of the CLOB
data.
2.Equallity of 2 CLOBs can be check by
using retrieve related data from database using jsp and mysqlretrieve related
data from database
using jsp and mysql Hi sir,
please give some example of jsp code for retrieving
mysql database values in multiple dropdown list. if we change a value in a dropdown its related value must
Deleting Mysql Clob data using servlet Deleting
Mysql Clob
data using servlet
In this Section, we will discuss about how to delete a Clob
data from a database
table
using servlet. A CLOB...; con =DriverManager.getConnection ("
jdbc:
mysql how to insert data into database using jsp & retrivehow to insert
data into database
using jsp & retrive Hello,
I have created 1 html page which contain username, password & submit button. in my oracle10G database already contain table name admin which has name, password
not able to connect to mysql using.. jdbc not able to connect to
mysql using..
jdbc i am not able to connect to
mysql using jdbc ..
is there any classpath that i need to set..because i am
using mysql-connector-java jar file..to connect to
mysql..
Pls provide the steps
Inserting Mysql CLOB data using ServletInserting
Mysql CLOB
data using Servlet
In this Section, we will insert "clob"
data using "servlet". A CLOB is a Character Large Object... portion of the CLOB
data.
2.Equallity of 2 CLOBs can be check by
using equals
Acees data from database using combo box - JSP-ServletAcees
data from database
using combo box please let me how i access the
data from database when i select combo box combo2 having values Arts...("show.jsp?class_name="+cla+"&&
from_year="+y1+"&&to_year="+y2+"&&school="+sch
retrive article from sql databse and show using phpretrive article
from sql databse and show
using php hello sir
i have sql database which i store articles.i want to show these article on web page
using php. my field are image,title,summary,content id. plz provide me
retrive data from database?retrive data from database? hellow
i have a database sheet name..... now i want
retrive sn,roll no and name and textbox
like....,rllno,and name
retrive using pb datawindow activex with jdbc for mysql - JDBCusing pb datawindow activex with
jdbc for mysql Hi,
I am trying to use datawindow activex in a web page. I need to connect to
mysql database located on the server.
I have downloaded the connectj for
mysql. What should
retrive data from database retrive data from database hi..
i made a application form. it's have attribute s.no,name,roll no and i enter a few records. now i want to view all record not in database access sheet i want to view it at any another
MySQL Driver for JDBC - JDBCMySQL Driver for JDBC Sir, I have started reading your
JDBC tutorial...... Example."); Connection conn = null; String url = "
jdbc:
mysql://localhost:3306 Hi,Please download the
driver from http://www.mysql.com/products/connector
how to display a table from database using servlethow to display a table
from database
using servlet how to display... the following link:ADS_TO_REPLACE_1
http://roseindia.net/jsp/
servlet-jsp-
data... the following link:
http://roseindia.net/jsp/
servlet-jsp-
data-list.shtml
ThanksADS