您好,登錄后才能下訂單哦!
如何使用jdk連接mysql,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
import java.sql.*; public class TestJDBC { public static void main(String[] arges) throws SQLException,ClassNotFoundException{ String user="root"; String pwd=""; //設(shè)定URL String myjdbc="jdbc:mysql://localhost:3306/test"; //加載MYSQL驅(qū)動 Class.forName("com.mysql.jdbc.Driver"); //創(chuàng)建連接會話 Connection myConnection=DriverManager.getConnection(myjdbc,user,pwd); //創(chuàng)建語句塊對象 Statement Myoperation=myConnection.createStatement(); //獲取結(jié)果集對象 ResultSet record=Myoperation.executeQuery("select *from test"); while(record.next()){ //輸出結(jié)果集對象 System.out.println(record.getInt("id")+","+record.getString("name")); } //關(guān)閉結(jié)果集 try{ if(record!=null) //關(guān)閉結(jié)果集時需要處理異常 record.close(); }catch(Exception e){ e.printStackTrace(); }finally{ try{ if(myConnection!=null) myConnection.close(); }catch(Exception e){ e.printStackTrace(); } } } }
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。