国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > JSP > 正文

java操作mysql入門(mén)代碼實(shí)例(含插入、更新和查詢(xún))

2020-07-27 21:34:09
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

復(fù)制代碼 代碼如下:

import java.sql.*;

public class mysql {
    public static String url = "jdbc:mysql://localhost:3306/test";//characterEncoding=GBK
    public static String username = "root";
    public static String password = "root";
    public static Connection con;
    public static Statement stmt;
    public static ResultSet rs;

    public static void main(String[] args) throws SQLException {
        connect();
        operation();
        stmt.close();
        con.close();
    }
    public static void test() {
        String sql_select = "select * from tablename where id=1";
        String sql_insert = "insert into tablename (col1,col2..) values('1','2'...)";
        String sql_update = "update tablename set colname='update' where id=1";
        //insert(sql_insert);
        //select(sql_select);
        //update(sql_update);
    }
    public static void connect() {
        // 定位驅(qū)動(dòng)
        try {
            Class.forName("com.mysql.jdbc.Driver");
            System.out.println("加載驅(qū)動(dòng)成功!");
        } catch (ClassNotFoundException e) {
            System.out.println("加載驅(qū)動(dòng)失敗!");
            e.printStackTrace();
        }
        // 建立連接
        try {
            con = DriverManager.getConnection(url, username, password);
            stmt = con.createStatement();
            System.out.println("數(shù)據(jù)庫(kù)連接成功!");
        } catch(SQLException e) {
            System.out.println("數(shù)據(jù)庫(kù)連接失敗!");
        }
    }
    public static void select(String sql) {
        try {
            rs = stmt.executeQuery(sql);
            ResultSetMetaData meta_data = rs.getMetaData();//列名
            for (int i_col = 1; i_col <= meta_data.getColumnCount(); i_col++) {
                System.out.print(meta_data.getColumnLabel(i_col) + "   ");
            }
            System.out.println();
            while (rs.next()) {
                for (int i_col = 1; i_col <= meta_data.getColumnCount(); i_col++) {
                    System.out.print(rs.getString(i_col) + "  ");
                }
                System.out.println();
            }
            rs.close();
        }catch (Exception e) {
            System.out.println("數(shù)據(jù)查詢(xún)失敗!");
        }
    }
    public static void insert(String sql) {
        try {
            stmt.clearBatch();
            stmt.addBatch(sql);
            stmt.executeBatch();
            System.out.println("數(shù)據(jù)插入成功!");
        }catch (Exception e) {
            System.out.println("數(shù)據(jù)插入失敗!");
        }

    }
    public static void update(String sql) {
        try {
            stmt.executeUpdate(sql);
            System.out.println("數(shù)據(jù)更新成功!");
        }catch (Exception e) {
            System.out.println("數(shù)據(jù)更新失敗!");
        }
    }
}

 

發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 永宁县| 都安| 公主岭市| 龙南县| 崇州市| 巴彦县| 鲁甸县| 三门峡市| 益阳市| 宁化县| 平度市| 蓝山县| 游戏| 南漳县| 开封县| 会理县| 琼海市| 定州市| 扎囊县| 楚雄市| 镇安县| 拉孜县| 固安县| 中超| 天镇县| 兖州市| 怀仁县| 五莲县| 德兴市| 六盘水市| 铜梁县| 承德县| 寿阳县| 九江县| 额敏县| 历史| 张家川| 繁峙县| 唐山市| 秀山| 庆城县|