Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
35 lines (30 loc) · 832 Bytes

File metadata and controls

35 lines (30 loc) · 832 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package db;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class MysqlDrive {
private static String url = "jdbc:mysql://192.168.99.100:3306/course?useUnicode=true&characterEncoding=utf8&useSSL=false";
private static String use = "root";
private static String passwd = "123456";
private static Connection con = null;
static{
try{
//step1:动态加载驱动
Class.forName("com.mysql.jdbc.Driver");
//step2:连接数据库
con = DriverManager.getConnection(url, use, passwd);
}catch(ClassNotFoundException e)
{
System.out.println("加载mysql驱动失败");
}catch(SQLException e)
{
System.out.println("连接数据库失败");
}
}
public static Connection getCon()
{
return con;
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.