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).
java
do not know deeply). - ivan89for
loop. 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