Re: [GENERAL] Why does the JDBC driver not support prepareCall?

2001-01-22 Thread Joel Bernstein
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

2000-12-18 Thread Joel Bernstein
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