如何修复SQLException“找不到适合的jdbc驱动程序”?

时间:2019-04-03 06:10:31

标签: java jdbc derby

我试图连接到我的coffee数据库以插入数据,但是每次我运行它说的代码

No suitable driver found for jdbc:derby://localhost:1527/coffeeZone

尝试使用此Class.forName(“ dbc:derby:// localhost:1527 / coffeeZone”); 我的Mac上也有mysql jdbc驱动程序

    String query="INSERT INTO `coffeeZone`.`branch` (`branch_Num`, `admin_id`, `Street`, `Nieghbourhood`) VALUES ('?', '?', '?', '?');";

          try{

      PreparedStatement ps;
      String f="jdbc:derby://localhost:1527/coffeeZone [coffee on COFFEE]";

      connection = DriverManager.getConnection(
            f, "coffee", "1234"); 
       ps=connection.prepareStatement(query);
        ps.setString(1, bno);
        ps.setString(2, strt);
       ps.setString(3, nbh);
        ps.setString(4, ci);
   if  (ps.executeUpdate()>0){


                    JOptionPane.showMessageDialog(null, "Complete! a new branch is added !");
               }else
               {
                   JOptionPane.showMessageDialog(null, "User already exists");
               }

    }        catch (SQLException ex) {
           JOptionPane.showMessageDialog(null,ex);
    }                                       

    }

1 个答案:

答案 0 :(得分:1)

基于此连接字符串:Class.forName("com.mysql.jdbc.Driver"),看来您需要先致电jdbc:mysql://localhost/dbname来建立连接。

编辑:如果您使用的是Derby,则需要:Class.forName("org.apache.derby.jdbc.EmbeddedDriver");https://db.apache.org/derby/docs/10.4/devguide/cdevdvlp40653.html)。

您是否发布了您遇到的确切错误?该错误涉及MySql连接,但代码使用Derby连接字符串,这似乎很奇怪。