Java JDBC Driver MySQL

Source: Internet
Author: User

Mysql:

1 ": http://www.mysql.com/products/connector/

2 "

jdbc:[database type]://[IP address]:[port number/[database name]
Private String URL = "Jdbc:mysql://localhost:3306/userdata";
Private String Driver = "Com.mysql.jdbc.Driver";
Private String user = "root";
Private String pass = "root123";

try{
class.forname ("Com.mysql.jdbc.Driver");//Load Driver
}
catch (ClassNotFoundException e)
{
E.getexception ();
}
insert into [table name] (column name 1, column name 2) VALUES (?,?)
[] can be omitted, () can not, there are several columns there are several question marks
String sql = "INSERT into Userdata.logn (User_logn,user_password) VALUES (?,?)"; /This string indicates the structure of the SQL statement
Connection cnn = drivermanager.getconnection (Url,user,pass);//Connection Database
PreparedStatement PREP = cnn.preparestatement (SQL);//Create PREPARED statement
String a = "ASDASDASD", b= "123456";
Prep.setstring (1,a);
Prep.setstring (2, B);
Prep.executeupdate ();//write data to the database, and may also throw SQL exceptions
Cnn.close ();

Java JDBC Driver MySQL

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.