Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Method to get only procedures from an oracle database using Java

I need to get only the procedures using java DatabaseMetaData but this method returns also the functions' names.

DatabaseMetaData dbmd=con.getMetaData();
ResultSet result = dbmd.getProcedures(null, Ousername, null); 
like image 920
gtzinos Avatar asked May 14 '15 16:05

gtzinos


1 Answers

That happens because procedures and functions are basically the same in Oracle.

There is a column PROCEDURE_TYPE of the type short that will show the kind of procedure:

  • 1 means there is no result, so it is a procedure.
  • 2 means it returns a result, so it is a function.

You can access that column as usual from the ResultSet:

result.getShort("PROCEDURE_TYPE")
like image 180
Phenom Avatar answered Sep 21 '22 23:09

Phenom