JDBC操作資料庫(SQL server)——連線資料庫程式碼
阿新 • • 發佈:2018-12-09
import java.sql.*; public class SqlLink { public static void main(String []args) { String userName = "TangHao"; String userPwd = "tanghao6.1"; String driverName="com.microsoft.sqlserver.jdbc.SQLServerDriver"; //協議、主機地址、埠號、資料庫名 String dbURL="jdbc:sqlserver://localhost:1433;DatabaseName=MySqlTest"; try { Class.forName(driverName); //指定3個引數,分別是連線地址,使用者名稱 和密碼 dbConn= DriverManager.getConnection(dbURL,userName,userPwd); System.out.println("資料庫連線成功"); } catch ( Exception e) { // TODO: handle exception e.printStackTrace(); System.out.println("連線失敗"); } } }