Java Database Connectivity (JDBC) supports ODBC-based databases and provides a independent database. JDBC has four primary pieces, used for each database access phase: DriverManager: the DriverManager class loads and configures a database driver on the database Connection: the Connection class performs confectioning and authentication to a database getConnection(String url) getConnection(String url, Properties info) getConnection(String url, [...]

Continue reading " Java Database Connectivity (JDBC) "