[Pljava-dev] unable to invoke sample pljava program.

Lists: PostgreSQL : PostgreSQL 메일 링리스트 : 무지개 토토 2012-11-01 12:03
From: bhaskar_nalamothu at pro-hemns(dot)com (Nalamothu, Bhaskar)
To:
Subject: [Pljava-dev] unable to invoke sample pljava program.
Date: 2012-11-01 04:56:41
Message-ID: CAOxerh6nrRM7UQFFRSGb5LLqap8=uBTcWXcsG1mBiQdkxoR7CA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pljava-dev

Dear Dev Team,

i am beginner for pljava. i am struggling a lot to invoke a simple pljava
program.

i have done the following things successfully.

*1.Sample java class which is having a static method as follows*
*
*
public static String hello(String hello){
return hello;
}

*2.Installed the jar *

SELECT sqlj.install_jar('file:///D:/Program
Files/PostgreSQL/9.1/lib/PLJAVA_Custom.jar', 'PLJAVA_Custom', true);

jar is loaded into jar_repository table of sqlj schema and also classes are
identified and loaded into jar_entry table of sqlj Schema,
*
*
*3. Set the Classpath successfully*
*
*
*SELECT sqlj.set_classpath('public', 'PLJAVA_Custom');*
*
*
*4. I have created a sample function as follows*
*
*
CREATE OR REPLACE FUNCTION handle_data2(character varying)
RETURNS character varying AS
'pljavaone.DataHandler.hello'
LANGUAGE java VOLATILE

*when i am executing its returning me the following error ERROR:
java.lang.ClassNotFoundException: pljavaone.DataHandler. *

Thanks in advance.

--
Sudha Bhaskar N
Procreate Techno Systems pvt ltd
+91-9948-678-222
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20121101/b7870ba1/attachment.html>


From: hal(dot)hildebrand at me(dot)com (Hal Hildebrand)
To:
Subject: [Pljava-dev] unable to invoke sample pljava program.
Date: 2012-11-01 12:03:41
Message-ID: 2F817EC8-493F-4942-A6E0-159BF2F632EA@me.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: PostgreSQL : PostgreSQL 메일 링리스트 : 무지개 토토 2012-11-01 12:03

You need to add the parameter type to the java signature in the definition.

Sent from my Tricorder

On Oct 31, 2012, at 9:56 PM, "Nalamothu, Bhaskar" <bhaskar_nalamothu at pro-hemns.com> wrote:

> Dear Dev Team,
>
> i am beginner for pljava. i am struggling a lot to invoke a simple pljava program.
>
> i have done the following things successfully.
>
> 1.Sample java class which is having a static method as follows
>
> public static String hello(String hello){
> return hello;
> }
>
> 2.Installed the jar
>
> SELECT sqlj.install_jar('file:///D:/Program Files/PostgreSQL/9.1/lib/PLJAVA_Custom.jar', 'PLJAVA_Custom', true);
>
> jar is loaded into jar_repository table of sqlj schema and also classes are identified and loaded into jar_entry table of sqlj Schema,
>
> 3. Set the Classpath successfully
>
> SELECT sqlj.set_classpath('public', 'PLJAVA_Custom');
>
> 4. I have created a sample function as follows
>
> CREATE OR REPLACE FUNCTION handle_data2(character varying)
> RETURNS character varying AS
> 'pljavaone.DataHandler.hello'
> LANGUAGE java VOLATILE
>
> when i am executing its returning me the following error ERROR: java.lang.ClassNotFoundException: pljavaone.DataHandler.
>
> Thanks in advance.
>
> --
> Sudha Bhaskar N
> Procreate Techno Systems pvt ltd
> +91-9948-678-222
>
> _______________________________________________
> Pljava-dev mailing list
> Pljava-dev at pgfoundry.org
> http://pgfoundry.org/mailman/listinfo/pljava-dev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20121101/d68ee234/attachment.html>