JAVA JDBC 簡單的增刪改查

來源:互聯網
上載者:User

標籤:upd   mysq   val   creat   exception   rman   oca   manage   ==   

package jdbc_util;import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;public class JdbcDemo {    // 設定漢字編碼    String jdbcUrl = "jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8";    String className = "com.mysql.jdbc.Driver";    String user = "root";    String password = "920619";    public Connection getConnection() {        Connection connection = null;        try {            // 載入資料庫驅動            Class.forName(className);            // 擷取資料庫連接            connection = DriverManager.getConnection(jdbcUrl, user, password);        } catch (Exception e) {            System.out.println("串連失敗");        }        return connection;    }    public void closeConnection(Connection connection) {        try {            connection.close();            System.out.println("關閉成功");        } catch (SQLException e) {            System.out.println("關閉失敗");        }    }    public void insert() {        String sql = "insert into user (UserName,PassWord,UserAge,UserSex) values(‘丙‘,‘123456‘, 20, 0)";        Connection connection = getConnection();        try {            Statement statement = connection.createStatement();            int result = statement.executeUpdate(sql);            if (result != 0) {                System.out.println("操作成功,受影響" + result + "行");            }        } catch (SQLException e) {            System.out.println("操作失敗");        } finally {            closeConnection(connection);        }    }    public void delete() {        String sql = "delete from user where UserId in (2,3,4)";        Connection connection = getConnection();        try {            Statement statement = connection.createStatement();            int result = statement.executeUpdate(sql);            if (result != 0) {                System.out.println("操作成功,受影響" + result + "行");            }        } catch (SQLException e) {            System.out.println("操作失敗");        } finally {            closeConnection(connection);        }    }        public void update() {        String sql = "update user set UserName = ‘乙‘ where UserId = 5";        Connection connection = getConnection();        try {            Statement statement = connection.createStatement();            int result = statement.executeUpdate(sql);            if (result != 0) {                System.out.println("操作成功,受影響" + result + "行");            }        } catch (SQLException e) {            System.out.println("操作失敗");        } finally {            closeConnection(connection);        }    }        public void select() {        String sql = "select * from user";        Connection connection = getConnection();        try {            Statement statement = connection.createStatement();            ResultSet resultSet = statement.executeQuery(sql);            while (resultSet.next()) {                System.out.println("UserName = " + resultSet.getString("UserName"));                System.out.println("PassWord = " + resultSet.getString("PassWord"));                System.out.println("UserAge = " + resultSet.getInt("UserAge"));                String userSex = resultSet.getInt("UserSex") == 1 ? "男" : "女";                System.out.println("UserSex = " + userSex);            }        } catch (SQLException e) {            System.out.println("操作失敗");        } finally {            closeConnection(connection);        }    }    }

 

JAVA JDBC 簡單的增刪改查

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.