MySQL 5.53 Jar是一個開源的Java數據庫連接工具,它可以讓Java開發者很方便地訪問MySQL數據庫。
使用MySQL 5.53 Jar連接數據庫非常簡單,只需引入相應的包,并配置數據庫連接信息即可:
String url="jdbc:mysql://localhost:3306/database_name"; String user="username"; String password="password"; try{ Class.forName("com.mysql.jdbc.Driver"); Connection conn=DriverManager.getConnection(url,user,password); Statement stmt=conn.createStatement(); ResultSet rs=stmt.executeQuery("select * from table_name"); while(rs.next()){ //處理結果集 } rs.close(); stmt.close(); conn.close(); } catch (SQLException e) { e.printStackTrace(); } catch (ClassNotFoundException e) { e.printStackTrace(); }
在上面的代碼中,我們首先加載了MySQL的JDBC驅動類,然后通過getConnection方法創建了一個數據庫連接對象,接著創建了一個Statement對象,用于執行SQL語句。最后,我們通過executeQuery方法執行了一條查詢語句,并處理結果集。
除了查詢數據,我們還可以使用MySQL 5.53 Jar進行插入、更新和刪除等操作。例如,要插入一條數據記錄,可以使用如下代碼:
String sql="insert into table_name (column1,column2,column3) values ('value1','value2','value3')"; try{ Class.forName("com.mysql.jdbc.Driver"); Connection conn=DriverManager.getConnection(url,user,password); Statement stmt=conn.createStatement(); int result=stmt.executeUpdate(sql); stmt.close(); conn.close(); } catch (SQLException e) { e.printStackTrace(); } catch (ClassNotFoundException e) { e.printStackTrace(); }
以上就是使用MySQL 5.53 Jar連接數據庫的基本過程和示例代碼,希望對Java開發者有所幫助。