Software 151 links to Wang Tao database

Source: Internet
Author: User

Package Com.cqvie;

Import java.sql.Connection;
Import Java.sql.DriverManager;
Import java.sql.Statement;

public class Test {

Constant definition (general all caps) localhost
public static final String dbdriver= "Net.sourceforge.jtds.jdbc.Driver";
public static final String dburl= "jdbc:jtds:sqlserver://127.0.0.1 (native access): 1433;databasename=wangchengyan"; School default Port
public static final String user= "Wang";
public static final String password= "123";
public static void Main (string[] args) throws Exception {
Try
{
Class.forName (dbdriver);//Load driver (uppercase is constant, value is unchanged)

Connection cn=drivermanager.getconnection (Dburl);//Connection
Statement st=cn.createstatement ();//execute command
St.executeupdate ("INSERT into Student values (' 1123 ', ' Lily ', ' female ', ' 1996-11-06 ', ' Software ')");
Cn.close ();
}
catch (Exception ex) {ex.printstacktrace ();}
}
}

Software 151 links to Wang Tao database

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.