Problems with JSP connection database

Source: Internet
Author: User

Package TSZ1;
Import java.sql.*;

public class Rushenzhou {

Connection con;
Statement STA;
ResultSet rs;

String driver;
String URL;
String user;
String pwd;
Public Rushenzhou ()
{
Driver = "Com.microsoft.jdbc.sqlserver.SQLServerDriver";
url = "Jdbc:microsoft:sqlserver://localhost:1433;databasename =xiongying";
Test is the database name
user = "SA";
PWD = "Chenxue";
Please change the appropriate user and password for you
Init ();
}
public void Init ()
{
try{
Class.forName (driver);
System.out.println ("Driver is OK");
con = drivermanager.getconnection (url,user,pwd);
System.out.println ("conection is OK");
/* STA = con.createstatement ();
rs = Sta.executequery ("Select * from room");
while (Rs.next ())
System.out.println (Rs.getint ("Roomnum")); */
}catch (Exception e)
{
E.printstacktrace ();
}
}

public static void Main (String args[])
{
Rushenzhou db=new Rushenzhou ();
}


}
Java.lang.ClassNotFoundException:com.mircsoft.jdbc.sqlserver.SQLserverDriver in MyEclipse Java project
I'm sure the driver has been installed and upgraded to SP3, the database table named Xiongying

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.