How to configure javadb in eclipse?
问题 I've tried a simple code about database but it gave me this error -> ERROR: No suitable driver found for jdbc:derby:CoffeeDB;create=true package Practice; import java.sql.*; public class Practice { public static void main(String[]args)throws Exception{ final String DB_URL = "jdbc:derby:CoffeeDB;create=true"; try{ Connection conn = DriverManager.getConnection(DB_URL); Statement stmt = conn.createStatement(); String sql = ("CREATE TABLE Coffee(Description CHAR(25),Prod Num CHAR(10) NOT NULL