我在下面有这个代码,我使用DriveManager来管理我的数据库驱动程序。
public static void main(String[] args)throws SQLException {
Connection con = new DriverManager.getConnection("jdbc:hsqldb:hsql://localhost/first-example","SA","");
}
但我与.getConnection()
有错,错误是:
无法找到符号
符号:类getConnection
类: DriveManager
答案 0 :(得分:5)
getConnection
是一种static
方法。删除new
关键字
Connection con = DriverManager.getConnection("jdbc:hsqldb:hsql://localhost/first-example","SA","");