天天看點

MySQL擷取資料庫連接配接對象_利用JDBC連接配接mysql資料庫,擷取連接配接對象的通用格式

String driverName="com.mysql.jdbc.Driver";        //驅動程式名

String userName="root";                     //資料庫使用者名

String userPwd="123456";                      //密碼

String dbName="student";                     //資料庫名

String url1="jdbc:mysql://localhost:3306/"+dbName;

String url2="?user="+userName+"&password="+userPwd;

String url3="&useUnicode=true&characterEncoding=UTF-8";

String url=url1+url2+url3;                   //形成帶資料庫讀寫編碼的資料庫連接配接字

Class.forName(driverName);                 //加載并注冊驅動程式

Connection conn=DriverManager.getConnection(url);                      //擷取資料庫連接配接對象