There is a Postgresql database with the following stub function
 CREATE OR REPLACE FUNCTION net_train(terms text[], answer integer) RETURNS void AS $BODY$begin --this code is stub end;$BODY$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION net_train(text[], integer) OWNER TO postgres; It is necessary to call this function from the java program. Tell me how to do it (preferably with sample code).
javado not know deeply). - ivan89forloop. How to call this function in a loop (I have no idea about the operators that allow to call this function in a java-program)? - ivan89