Web Developer's Virtual Library: Encyclopedia of Web Design Tutorials, Articles and Discussions


WDVL Newsletter

Active Server Pages
JSP/Java Servlets
Microsoft SQL Server
Daily Backup
Dedicated Servers
Streaming Audio/Video
24-hour Support    

jobs.webdeveloper.com

Hiermenus


e-commerce
Partner With Us















Developer Channel
FlashKit.com
JavaScript.com
JavaScriptSource
Developer Jobs
ScriptSearch
StreamingMediaWorld
Web Developer's Journal
Web Developer's Virtual Library
WebDeveloper.com
Webreference
Web Hosts
XMLfiles.com

internet.com
IT
Developer
Internet News
Small Business
Personal Technology

Search internet.com
Advertise
Corporate Info
Newsletters
Tech Jobs
E-mail Offers


The Complete ValidateUser Method

June 12, 2000

Here is the code ... putting it all together. Remember in our sample application of Part 1 we said we will write a validateUser method? Here is the code for such a method.

public String validateUser(String inputUserid, String inputPwd) 
   throws SQLException{
	String returnString = null;
	String dbUserid = "userid"; // Your Database user id
	String dbPassword = "password" ; // Your Database password
	Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
	Connection con = DriverManager.getConnection("jdbc:odbc:myDriver",
						dbUserid ,dbPassword );
	Statement stmt = con.createStatement();
	String sql= "select USERID from USERTABLE where USERID = '" + 
		   inputUserid + "' and PASSWORD = '" + inputPwd +"' ;" ; 
	ResultSet rs = stmt.executeQuery(sql);
	if (rs.next())
	{
	  returnString = rs.getString("USERID");
	}
	stmt.close();
	con.close();
	return returnString ;
}

This method - ValidateUser will return the username if the supplied username - password combination exists in the database. Otherwise it will return null.

STEP 2: Use This Connection to Access the Database
Building Web Applications Using Servlets and JSP Part II
JDBC 2.0


Up to => Home / Authoring / Java / Servlets




Jupiter Online Media: internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and Jupiter Online Media

Jupitermedia Corporate Info


Legal Notices, Licensing, & Permissions, Privacy Policy.

Web Hosting | Newsletters | Tech Jobs | Shopping | E-mail Offers