62,620
社区成员
发帖
与我相关
我的任务
分享import java.sql.*;
public class Testone {
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
Class.forName("org.apache.derby.jdbc.ClientDriver");
Connection conn = DriverManager.getConnection("jdbc:derdy://localhost:1527//COREJAVA;create=true","User","jian");
}
}