Oracle/CallableStatement 썸네일형 리스트형 CallableStatement CallableStatement Overview ------- This article contains information on the use of PL/SQL units to execute Dynamic SQL from a JDBC program. PreparedStatement ----------------- JDBC provides APIs for executing Dynamic SQL using PreparedStatement. For example: PreparedStatement pstmt; pstmt=conn.prepareStatement("select empno from emp where deptno=?"); pstmt.setInt(1,10); ResultSet c1; c1=pstmt.ex.. 더보기 이전 1 다음