import java.sql.DriverManager not accessible;

Connection connection = 
(Connection)DriverManager.getConnection(dbURL,userName,passWord);

when I try to access mysql;this happened;
I find that I cannot import java.sql.DriverManager .even java.sql is not accessible.

and I

open the module-info.java
add a


	requires java.sql;

everything OK

你可能感兴趣的:(java_Learning,java,sql)