From: | friend 4ever <urmyfriend14(at)yahoo(dot)com> |
---|---|
To: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Getting parse Error at or near character "and" |
Date: | 2007-05-02 07:40:39 |
Message-ID: | 622116.11649.qm@web37506.mail.mud.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Hi,
I am getting the parse error while i try to execute a simple sql query in postgres.
java.sql.SQLException: ERROR: parser: parse error at or near "and" at character 58
The Query has been changed and it is very much like the below one
select * from emp where empName like 'XXXXX' and empId=206
when I try to execute the same query in the postgresql console it is working fine but when i try to execute the same as a prepared statement from my java code it is giving the java.sql.SQLException like the above.
Do Anyone have the answer for this problem????????
Expecting a Quick response.
Here is my code:
String getEmpId=SQLQueriesHandler.getQuery("eis.toGetEmpId");
psmt=conn.prepareStatement(getEmpId);
psmt.setString(1,empForm.getEmpName());
psmt.setInt(2,empForm.getDeptId());
System.out.println("The Query to empId with Parameters is : "+psmt.toString());
rs=psmt.executeQuery(getEmpId);
where the query will be like
select empId from empTab where empName like 'XXXXXXX' and deptId=13
And in the above code empForm is the Struts ActionForm object and getters are the form beans.
If i try to execute that as a statement it is executing well.
and also if i try to execute that query as a pprepare statement in the code itself it is executing well.
The only problem is when i try to get the query from the properties file eg:query.properties
The variable names are changed keeping the code as it is.
Plz reply back soon
Thanks in Advance.
Regards,
urmyfriend
---------------------------------
Ahhh...imagining that irresistible "new car" smell?
Check outnew cars at Yahoo! Autos.
From | Date | Subject | |
---|---|---|---|
Next Message | Dave Page | 2007-05-02 07:59:39 | Re: Fwd: [PATCHES] Preliminary GSSAPI Patches |
Previous Message | Magnus Hagander | 2007-05-02 07:34:38 | Re: Feature freeze progress report |