From: | byan at predixionsoftware(dot)com (Brian Yan) |
---|---|
To: | |
Subject: | [Pljava-dev] Unable to find static method. |
Date: | 2012-11-28 02:02:32 |
Message-ID: | 5E7E4A8EDF91DC4D8EE408A8A243778A18A2E9B607@DFW1MBX23.mex07a.mlsrvr.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | PostgreSQL : PostgreSQL 메일 링리스트 : 2012-11-28 이후 스포츠 토토 02:02 |
Hi,
I am running into a very basic error that I can not seem the find the solution for. I have gotten this to work before but somehow it no longer does. Jar files are in the right place with the class path defined.
Below is the function definition, class and the error it throws:
Function Def:
CREATE OR REPLACE FUNCTION pxexists()
RETURNS boolean AS
'px.StoredProcedures.PredictionProviderExists'
LANGUAGE java;
Class:
package px;
public class StoredProcedures {
public static boolean PredictionProviderExists()
{
return true;
}
}
Query:
select pxexists();
Unable to find static method px.StoredProcedures.PredictionProviderExists with signature ()Z (PgObject.c:101)
Does anyone have any suggestions?
Thank you for your help!
Brian
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20121127/9cf29ae2/attachment.html>
From | Date | Subject | |
---|---|---|---|
Next Message | Thomas Hallgren | 2012-12-03 08:21:08 | [Pljava-dev] Unable to find static method. |
Previous Message | Hal Hildebrand | 2012-11-01 12:03:41 | [Pljava-dev] unable to invoke sample pljava program. |