我想以类似的方式访问本地 MySQL 文件,可以使用 SmallSQL 访问它。例如。
String driver = "smallsql.server.SSDriver";
String url = "jdbc:smallsql:C:\\Users\\user\\Desktop\\SQuirreL\\db";
Class.forName(driver).newInstance();
conn = DriverManager.getConnection(url);
System.out.println("Connected to smallSQL database");
如您所见,我可以将我的 db 文件夹移动到本地计算机上的任何位置,我所要做的就是提及 db 文件夹的路径以与之连接。mysql中的类似实现,如下所示:
try
{
Class.forName("com.mysql.jdbc.Driver").newInstance();
conn = DriverManager.getConnection(jdbc:mysql://localhost:3306/db?characterEncoding=UTF8&user=root&password=#$%^";);
System.out.println("Connected to MySQL database");
}
所以我想知道是否有类似的方法来处理 MySQL 数据库,就像我们可以使用存储在 $path_to_myql/mysql/data/db 中的 SmallSQL 一样?
谢谢