Java JDBC連接MYsql


import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

public class Main {
    public static void Query() {
        Connection connection = null;
        try {
            String SDdriver = "com.mysql.jdbc.Driver";
            String SDurl = "jdbc:mysql://localhost:3306/emsdb?characterEncoding=utf8&useSSL=true";
       //emsdb替換成自己的數據庫名稱 String SDuser
= "root"; String SDpassword = "123456"; Class.forName(SDdriver); connection = DriverManager.getConnection(SDurl, SDuser, SDpassword); } catch (Exception e) { e.printStackTrace(); } PreparedStatement preparedStatement = null; ResultSet resultSet = null; String ss = new String("SELECT * from employer;"); try { preparedStatement = connection.prepareStatement(ss); resultSet = preparedStatement.executeQuery(); while (resultSet.next()) { System.out.println(resultSet.getString("ename")); } } catch (SQLException ex) { } finally { closeAll(connection, preparedStatement,resultSet); } } public static void closeAll(Connection connection, PreparedStatement preparedStatement,ResultSet resultSet) { try {
       //按順序關閉
if(resultSet!=null) { resultSet.close(); } if (preparedStatement!=null) { preparedStatement.close(); } if (connection != null) { connection.close(); } } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { // TODO Auto-generated method stub Query(); } }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM