Re: Problem with creating language by JDBC - Mailing list pgsql-jdbc

From MD
Subject Re: Problem with creating language by JDBC
Date
Msg-id 39439567-93ad-4012-bfa6-b79d625abe2e@t10g2000yqg.googlegroups.com
Whole thread Raw
In response to Problem with creating language by JDBC  ("Ming Deng" <mdeng@rim.com>)
Responses Re: Problem with creating language by JDBC  (Thomas Kellerer <spam_eater@gmx.net>)
List pgsql-jdbc
On Jun 25, 2:40 am, spam_ea...@gmx.net (Thomas Kellerer) wrote:
> MD, 25.06.2010 05:10:
>
> >>> I was trying to create language by execute() or executeUpdate(). But the
> >>> call always fails with message as
>
> >>> problem running SQL query: CREATE TRUSTED PROCEDURAL LANGUAGE 'plpgsql'
> >>>     HANDLER plpgsql_call_handler
> >>> .An I/O error occured while sending to the backend.
>
> >>> Following is a snippet of the Java code I have, which works with
> >>> creating database, executing other queries:
>
> >> Did you try to use a regular statement, instead of a PreparedStatement?
>
> > I just tried with the regular statement, got the same failure.
>
> That's strange, the following works fine for me:
>
> Class.forName("org.postgresql.Driver");
> con = DriverManager.getConnection("jdbc:postgresql://localhost/postgres", "postgres", "postgres");
> stmt = con.createStatement();
> stmt.executeUpdate("CREATE TRUSTED PROCEDURAL LANGUAGE 'plpgsql' HANDLER plpgsql_call_handler");
>
> I think it is not related to the way you run this from Java, but something else, and the "I/O error" seems to
indicatethat. 
>
> Regards
> Thomas

Hi Thomas,

Thanks for your investigation. What are the version of Postgres and
JDBC you are using?


pgsql-jdbc by date:

Previous
From: Thomas Kellerer
Date:
Subject: Re: Problem with creating language by JDBC
Next
From: Thomas Kellerer
Date:
Subject: Re: Problem with creating language by JDBC