我已经使用EasyPHP创建了数据库,但是随后我发现可以直接在NetBeans 8.2上创建数据库。我创建的数据库太大了:重新创建它需要一些时间。我没有设法将其导入到NetBeans的数据库中,而且很难连接到NetBeans上的任何数据库。我想知道如何将其导入NetBeans的数据库中,是否与EasyPHP使用的代码相同(下面的代码)?还是应该更改某些内容?
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
new NotificationBuilder().withStyle(new DarkDefaultNotification()).withTitle("erreur")
.withMessage("Erreur au niveau du driver").withDisplayTime(3000).showNotification();
}
try {
con= DriverManager.getConnection(url,name,pwd);
} catch (SQLException e) {
new NotificationBuilder().withStyle(new DarkDefaultNotification()).withTitle("erreur 2")
.withMessage("erreur d'etablissement de connexion").withDisplayTime(3000).showNotification();
}