Java connects databases with JDBC

Source: Internet
Author: User

Java connects databases with JDBC

Get ready

Install MySQL

Download Mysql-connector-java-5.1.40-bin.jar driver Package

Steps

    1. To create a JDBC project
    2. Import Mysql-connector-java-5.1.40-bin.ja Package
    3. Creating a configuration file

Jdbc.properties

User=root

password=1230

Driverclass=com.mysql.jdbc.driver

Jdbcurl=jdbc:mysql:///atguigu

    1. Code

Import java.io.IOException;

Import Java.io.InputStream;

Import java.util.Properties;

Import Java.sql.DriverManager;

Import java.sql.SQLException;

Import com.mysql.jdbc.Connection;

Public class jdbctools {

Public jdbctools () {

}

Public staticConnection getconnection () throws IOException, SQLException {

Connection conn = null;

Properties Properties = new properties ();

InputStream instream = jdbctools. class . getClassLoader ()

. getResourceAsStream ("jdbc.properties");

properties. Load (instream);

String User = properties. GetProperty ("user");

String Password = properties. GetProperty ("password");

String driverclass = properties. GetProperty ("Driverclass");

String Jdbcurl = properties. GetProperty ("Jdbcurl");

conn = (Connection) DriverManager. Getconnection(jdbcurl,user,password);

returnconn;

}

Public staticvoid main (string[] args) throws IOException, SQLException {

System. out. println (getconnection());

}

}

Java connects databases with JDBC

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.