Re: [GENERAL] Why does the JDBC driver not support prepareCall?
I have not tried prepareCall with postgreSQL but it makes sense that it would not be implemented. prepareCall is a JDBC method used to call stored procedures in a database. postgreSQL implements stored procedures as function calls. So up to now the prepareCall method has not been needed becaus
[GENERAL] functions / store procedures
Can JDBC ResultSets be returned from user defined functions with postgreSQL? Is there more documentation for functions then is available on www.postgresql.org? Thanks, Joel