Skip to content

Instantly share code, notes, and snippets.

View fakeyanss's full-sized avatar
🤪
Focusing

fakeyanss

🤪
Focusing
View GitHub Profile
@fakeyanss
fakeyanss / gist:f9c33b1061c9dd6ca9917e93a4309049
Last active February 21, 2019 09:17
java-mysql-connect
public class Mysql2 {
// JDBC 驱动名及数据库 URL
static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
static final String DB_URL = "jdbc:mysql://host:3306/dbname";
// 数据库的用户名与密码,需要根据自己的设置
static final String USER = "user";
static final String PASS = "password";
public static void main(String[] args) {