使用java連接MySQL數(shù)據(jù)庫并實(shí)現(xiàn)增刪改查等操作?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
創(chuàng)新互聯(lián)基于分布式IDC數(shù)據(jù)中心構(gòu)建的平臺為眾多戶提供四川雅安電信機(jī)房 四川大帶寬租用 成都機(jī)柜租用 成都服務(wù)器租用。
首先,需要把MySQL與Java連接的jar(mysql-connector-java-5.1.6-bin.jar)包導(dǎo)入工程.
package com.cn.edu; import java.beans.Statement; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; public class helloworld { private Connection conn = null; PreparedStatement statement = null; // connect to MySQL void connSQL() { String url = "jdbc:mysql://localhost:3306/hello?characterEncoding=UTF-8"; String username = "root"; String password = "root"; // 加載驅(qū)動程序以連接數(shù)據(jù)庫 try { Class.forName("com.mysql.jdbc.Driver" ); conn = DriverManager.getConnection( url,username, password ); } //捕獲加載驅(qū)動程序異常 catch ( ClassNotFoundException cnfex ) { System.err.println( "裝載 JDBC/ODBC 驅(qū)動程序失敗。" ); cnfex.printStackTrace(); } //捕獲連接數(shù)據(jù)庫異常 catch ( SQLException sqlex ) { System.err.println( "無法連接數(shù)據(jù)庫" ); sqlex.printStackTrace(); } } // disconnect to MySQL void deconnSQL() { try { if (conn != null) conn.close(); } catch (Exception e) { System.out.println("關(guān)閉數(shù)據(jù)庫問題 :"); e.printStackTrace(); } } // execute selection language ResultSet selectSQL(String sql) { ResultSet rs = null; try { statement = conn.prepareStatement(sql); rs = statement.executeQuery(sql); } catch (SQLException e) { e.printStackTrace(); } return rs; } // execute insertion language boolean insertSQL(String sql) { try { statement = conn.prepareStatement(sql); statement.executeUpdate(); return true; } catch (SQLException e) { System.out.println("插入數(shù)據(jù)庫時出錯:"); e.printStackTrace(); } catch (Exception e) { System.out.println("插入時出錯:"); e.printStackTrace(); } return false; } //execute delete language boolean deleteSQL(String sql) { try { statement = conn.prepareStatement(sql); statement.executeUpdate(); return true; } catch (SQLException e) { System.out.println("插入數(shù)據(jù)庫時出錯:"); e.printStackTrace(); } catch (Exception e) { System.out.println("插入時出錯:"); e.printStackTrace(); } return false; } //execute update language boolean updateSQL(String sql) { try { statement = conn.prepareStatement(sql); statement.executeUpdate(); return true; } catch (SQLException e) { System.out.println("插入數(shù)據(jù)庫時出錯:"); e.printStackTrace(); } catch (Exception e) { System.out.println("插入時出錯:"); e.printStackTrace(); } return false; } // show data in ju_users void layoutStyle2(ResultSet rs) { System.out.println("-----------------"); System.out.println("執(zhí)行結(jié)果如下所示:"); System.out.println("-----------------"); System.out.println(" 用戶ID" + "/t/t" + "淘寶ID" + "/t/t" + "用戶名"+ "/t/t" + "密碼"); System.out.println("-----------------"); try { while (rs.next()) { System.out.println(rs.getInt("ju_userID") + "/t/t" + rs.getString("taobaoID") + "/t/t" + rs.getString("ju_userName") + "/t/t"+ rs.getString("ju_userPWD")); } } catch (SQLException e) { System.out.println("顯示時數(shù)據(jù)庫出錯。"); e.printStackTrace(); } catch (Exception e) { System.out.println("顯示出錯。"); e.printStackTrace(); } } public static void main(String args[]) { helloworld h = new helloworld(); h.connSQL(); String s = "select * from ju_users"; String insert = "insert into ju_users(ju_userID,TaobaoID,ju_userName,ju_userPWD) values("+8329+","+34243+",'mm','789')"; String update = "update ju_users set ju_userPWD =123 where ju_userName= 'mm'"; String delete = "delete from ju_users where ju_userName= 'mm'"; if (h.insertSQL(insert) == true) { System.out.println("insert successfully"); ResultSet resultSet = h.selectSQL(s); h.layoutStyle2(resultSet); } if (h.updateSQL(update) == true) { System.out.println("update successfully"); ResultSet resultSet = h.selectSQL(s); h.layoutStyle2(resultSet); } if (h.insertSQL(delete) == true) { System.out.println("delete successfully"); ResultSet resultSet = h.selectSQL(s); h.layoutStyle2(resultSet); } h.deconnSQL(); } }
notice:
1、現(xiàn)在一般用的驅(qū)動是com.mysql.jdbc.Driver
,以前的那個什么org的驅(qū)動雖然封裝了com.mysql.jdbc.Driver
,但不好用,過時了。
2、prepareStatement(sql)
是statement
的子類,比statement好用。
3、如果數(shù)據(jù)庫中定義的是int值,那么sql語句中要把int單獨(dú)提出來。如".....values("+8329+","+34243+",'mm','789')"
關(guān)于使用java連接mysql數(shù)據(jù)庫并實(shí)現(xiàn)增刪改查等操作問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。
新聞名稱:使用java連接mysql數(shù)據(jù)庫并實(shí)現(xiàn)增刪改查等操作
文章源于:http://aaarwkj.com/article0/gjgcio.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣、外貿(mào)建站、做網(wǎng)站、云服務(wù)器、ChatGPT、網(wǎng)站排名
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)