Re: Opening view that uses a function - empty column - Mailing list pgsql-jdbc

From Dave Cramer
Subject Re: Opening view that uses a function - empty column
Date
Msg-id CADK3HHJ76-CD=bSdp6Qhd7SYX+rda-m=+BX9ri8GwQWF-XnffA@mail.gmail.com
Whole thread Raw
In response to Opening view that uses a function - empty column  (Brady Mathis <bmathis@r-hsoftware.com>)
Responses Re: Opening view that uses a function - empty column  (Brady Mathis <bmathis@r-hsoftware.com>)
List pgsql-jdbc
You'd have to give us a bit more information such as how you "open" it
using JDBC

Dave Cramer

dave.cramer(at)credativ(dot)ca
http://www.credativ.ca


On Fri, Jul 27, 2012 at 3:46 PM, Brady Mathis <bmathis@r-hsoftware.com> wrote:
> Two step inquiry:
>
>
> 1)  I have created a function that will parse a value out of XML stored in the pg_largeobject table using xpath, like
so:
>
>
> CREATE OR REPLACE FUNCTION extract_from_extended(text, bigint)
>   RETURNS text AS
> $BODY$
>         select translate( xpath(...) );
> $BODY$
>   LANGUAGE sql VOLATILE
>   COST 100;
>
>
> 2)  I then created a view that calls this function as part of the query, like so:
>
>
> CREATE OR REPLACE VIEW encounter AS
> SELECT md.account_id, extract_from_extended('externalEncounterID'::text, md.id) AS external_id...
>         FROM app.menu_data md, app.menu_structure ms
>         WHERE...;
>
> When I open this view via JDBC, there is no data in the column that is filled by the function call.
>
> Any thoughts?
> TIA,
> BRady
>
> --
> Sent via pgsql-jdbc mailing list (pgsql-jdbc@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-jdbc

pgsql-jdbc by date:

Previous
From: Brady Mathis
Date:
Subject: Opening view that uses a function - empty column
Next
From: Brady Mathis
Date:
Subject: Re: Opening view that uses a function - empty column