Java の質問です。
Eclipsを使用し、
Mavenを利用して
JDBCドライバのダウンロードから設置までをやる方法で、
MySQLに接続したいのですが、
上手くいかず困っています。
参考サイト
https://techacademy.jp/magazine/34617
エラーログ
No suitable driver found for jdbc:mysql://localhost/testdb
このエラーログを元に以下のサイトを参考にしたのですが、
上手くいきまんでした。
https://yukun.info/java-no-suitable-driver-found/
(自分でJDBCドライバをインストールして設置するやり方だと思われる。)
DB 名 | テーブル名 |
---|---|
testdb | books |
DB名も、テーブル名もあっているので
問題ないと思います。
以下、エラーが起きているコード
java
1import java.sql.Connection; 2import java.sql.DriverManager; 3import java.sql.PreparedStatement; 4import java.sql.ResultSet; 5import java.sql.SQLException; 6 7public class DbSample { 8 9 public static void main(String[] args) { 10 Connection con = null; 11 PreparedStatement pstmt = null; 12 ResultSet rs = null; 13 14 try { 15 16 con = DriverManager.getConnection( 17 "jdbc:mysql://localhost/testdb", 18 "root", 19 "パスワード" 20 );// "password"の部分は,各自の環境に合わせて変更してください。 21 22 pstmt = con.prepareStatement("select * from books"); 23 24 rs = pstmt.executeQuery(); 25 26 while (rs.next()) { 27 System.out.println(rs.getString("name")); 28 System.out.println(rs.getInt("id")); 29 } 30 31 } catch (SQLException e) { 32 e.printStackTrace(); 33 } finally { 34 if (rs != null) { 35 try { 36 rs.close(); 37 } catch (SQLException e) { 38 e.printStackTrace(); 39 } 40 } 41 if (pstmt != null) { 42 try { 43 pstmt.close(); 44 } catch (SQLException e) { 45 e.printStackTrace(); 46 } 47 } 48 if (con != null) { 49 try { 50 con.close(); 51 } catch (SQLException e) { 52 e.printStackTrace(); 53 } 54 } 55 } 56 } 57} 58
お手数かけますが、
分かる方いたらご教授願います。