Tải Netbeans 8.1.
Tải Sql Sever để có thể dùng được.
Config file jdbcHelper:
public class jdbcHelper {
static String driver = "com.microsoft.sqlserver.jdbc.SQLServerDriver";
static String url = "jdbc:sqlserver://<locahost>\\<port>;database=Data_DichVuDL";
static String user = "sa";
static String pass = "123456";
static{
try {
Class.forName(driver);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
XEM THÊM ==> Hướng dẫn cài đặt chi tiết
HƯỚNG DẪN CÀI ĐẶT
Đầu tiên chú ý :
Tải Netbeans 8.1.
Tải Sql Sever để có thể dùng được.
Sau khi cài đặt đầy đủ 2 ứng dụng trên thì bắt đầu chạy và import file sql vào sql server:
Tiến hành confid lại file để có thể connect với sql server. Chú ý nhớ import đủ library trong folder lib vào trong project
Config file jdbcHelper:
public class jdbcHelper {
static String driver = "com.microsoft.sqlserver.jdbc.SQLServerDriver";
static String url = "jdbc:sqlserver://<locahost>\\<port>;database=Data_DichVuDL";
static String user = "sa";
static String pass = "123456";
static{
try {
Class.forName(driver);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
Sau đó chạy thử và ứng dụng.
Nguồn: Topcode.vn