Alguien me puede decir como ejecuto un procedimiento almacenado desde un servlet??..hasta ahora tengo esto:
CallableStatement cs = null;
cs=conn.prepareCall("{call levantarDocGeneral (?,?,?)}");
cs.setInt(1,alumno.rut);
cs.setInt(2,alumno.codDepto);
cs.setInt(3,alumno.codCarrera);
cs.executeUpdate( );
Pero se cae con el siguiente error:
java.sql.SQLException: ORA-06550: line 1, column 7:
PLS-00306: wrong number or types of arguments in call to 'LEVANTARDOCGENERAL'
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
ALGUINE PORFAVOR QUE ME AYUDE PLIS...