입력 출력 파라미터가 있는 저장 프로세스

1103 단어
입출력 매개변수가 있는 저장 프로세스를 생성하려면 다음과 같이 하십시오.
drop procedure if exists proc_user_inout;
delimiter //
create procedure proc_user_inout(inout inout_param int)
begin
select count(*) into inout_param from user where userid > inout_param ;
end //
delimiter ;

위 코드는 현재 데이터베이스에 입력 출력 파라미터가 있는 저장 프로세스를 만들었습니다. 이름은 proc 입니다.user_이 저장 프로세스를 호출하여userid>2의 기록을 조회할 수 있습니다.
명령줄에서 이 저장 프로세스 코드를 호출합니다.
4
set @result=2;
call proc_user_inout(@result);
select @result;
참고: 위의 @result는 변경할 수 없습니다.
클래스에서 다음과 같은 키 코드를 써서 스토리지 프로세스를 호출합니다.
public static void main(String[] args) {
		Connection con = null;
		CallableStatement cs = null;
		try {
			con = getConnection();
			String sql = "{call proc_user_inout(?)}";
			cs = con.prepareCall(sql);
			cs.registerOutParameter(1, Types.VARCHAR);
			cs.setInt(1, 2);
			cs.execute();
			int number = cs.getInt(1);
			System.out.println(number);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

상기 두 가지 호출은userid>2의 기록을 얻을 수 있습니다.

좋은 웹페이지 즐겨찾기