Thread: JDBC invoke of Postgres stored procs?

JDBC invoke of Postgres stored procs?

From
"Randall Parker"
Date:
Simple question: Can the functions created via CREATE FUNCTION be invoked via the JDBC driver?





Re: JDBC invoke of Postgres stored procs?

From
Travis Bauer
Date:
I have specifically tried this, but I don't see why it shouldn't
work.  Call it as an executeUpdate, and not an executeQuery.

Statement st = myConnection.createStatement();
st.executeUpdate("create function . . . ");

----------------------------------------------------------------
Travis Bauer | CS Grad Student | IU |www.cs.indiana.edu/~trbauer
----------------------------------------------------------------

On Tue, 11 Jul 2000, Randall Parker wrote:

> Simple question: Can the functions created via CREATE FUNCTION be invoked via the JDBC driver?
>
>
>
>