DriverManager クラス
- [内容]
- JDBC ドライバを管理するためのクラスです.
- [主なメソッド]
- public static Connection getConnection(String url) throws SQLException
- public static Connection getConnection(String url, String user, String password) throws SQLException
- 指定されたデータベースのある URL へ接続する.url は,jdbc:subprotocol:subname という形式を持つ.
- [使用例]
- プログラム例は,サーバ cs-www にある MySQL のデータベースへ,JDBC を使用して接続した例です.
- [参照]
- Connection, Statement, ResultSet, PreparedStatement, ResultSetMetaData