*/
public java.sql.ResultSet getFunctions(String catalog, String schemaPattern,
String functionNamePattern) throws SQLException {
Field[] fields = new Field[6];
fields[0] = new Field("", "FUNCTION_CAT", Types.CHAR, 255);
fields[1] = new Field("", "FUNCTION_SCHEM", Types.CHAR, 255);
fields[2] = new Field("", "FUNCTION_NAME", Types.CHAR, 255);
fields[3] = new Field("", "REMARKS", Types.CHAR, 255);
fields[4] = new Field("", "FUNCTION_TYPE", Types.SMALLINT, 6);
fields[5] = new Field("", "SPECIFIC_NAME", Types.CHAR, 255);
return getProceduresAndOrFunctions(
fields,
catalog,
schemaPattern,