Inspectopedia Help

Use of 'DriverManager' to get JDBC connection

Reports any uses of java.sql.DriverManager to acquire a JDBC connection.

java.sql.DriverManager has been superseded by javax.sql.Datasource, which allows for connection pooling and other optimizations.

Example:

Connection conn = DriverManager.getConnection(url, username, password);

Inspection Details

Available in:

IntelliJ IDEA 2023.3, Qodana for JVM 2023.3

Plugin:

Java, 233.SNAPSHOT

Last modified: 13 July 2023