我真的很陌生,我真的不知道我在做什么,所以请保持温柔。我有一个blueJ程序和一个SQL数据库来连接它。我有一个.jar库来连接它但是我在哪里保存库以及该存储的确切位置?在这,对吗?
try
{
String user = "root";
String pass = "12345";
String url = "jdbc:mysql://localhost/mydb";
Class.forName("com.mysql.jdbc.Driver").newInstance();
conn = DriverManager.getConnection(url, user, pass);
System.out.println ("Database connection established");
}
但是在
String url =“jdbc:mysql:// localhost / mydb”;
该位置与我目前存储的sql文件和jar库的位置不同,所以我需要将此行更改为文件和库的位置?是对的吗?
要在这里成为一个numskull,如果我只是将它保存到C盘(为了便于理解),我该如何重写该线指向那里?
感谢。呼。
答案 0 :(得分:0)
import java.sql.*;
public class MysqlConnect{
public static void main(String[] args) {
System.out.println("MySQL Connect Example.");
Connection conn = null;
String url = "jdbc:mysql://localhost:3306/";
String dbName = "jdbctutorial";
String driver = "com.mysql.jdbc.Driver";
String userName = "root";
String password = "root";
try {
Class.forName(driver).newInstance();
conn = DriverManager.getConnection(url+dbName,userName,password);
System.out.println("Connected to the database");
conn.close();
System.out.println("Disconnected from database");
} catch (Exception e) {
e.printStackTrace();
}
}
}