Java / JDBC
When does JDBC No suitable driver error occurs?
"No suitable driver" may occur during a call to the DriverManager.getConnection method due to the following reasons:
- Failed to load the appropriate JDBC drivers before calling the getConnection method.
- Due to invalid JDBC URL, not being recognized by JDBC driver.
- One or more the shared libraries needed by the bridge cannot be loaded.
More Related questions...