zoukankan      html  css  js  c++  java
  • mysql存储过程

    mysql 数据库

    delimiter //

     create procedure selectallstudent() begin select * from tab1;end;//

    call selectAllstudent()//

    +---------+
    | tab1_id |
    +---------+
    | 0002    |
    | 0003    |
    | 0004    |
    | 0005    |
    | 0006    |
    +---------+
    5 rows in set

    Query OK, 0 rows affected

    java

    package test_procedure;
    import java.sql.*;
    
    public class test_procedure {
        public static void main(String[] args) {
            try {
                Class.forName("com.mysql.jdbc.Driver");
                java.sql.Connection conn= DriverManager.getConnection("jdbc:mysql:///trigger", "root", "root");
                java.sql.CallableStatement callableStatement=conn.prepareCall("{call selectallstudent()}");
                callableStatement.execute();
                java.sql.ResultSet resultSet= callableStatement.getResultSet();
                while (resultSet.next()) {
                    System.out.println(resultSet.getString(1));
                }
                conn.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

    结果

    0002
    0003
    0004
    0005
    0006

  • 相关阅读:
    学习嵌入式规划
    函数指针与指针函数
    css3
    css
    file upload使用iframe
    上传图片,文件
    table td里面的内容多的话出...
    html5 新标签
    html element
    css/html规范
  • 原文地址:https://www.cnblogs.com/angelye/p/7510651.html
Copyright © 2011-2022 走看看