I have a query that looks something like this:

SELECT A.A, A.B, B.A, B.C, B.D
FROM tableone A, tabletwo B
WHERE A.A = B.A
AND B.C = :p_name

When the param :p_name is set to FOO I get an error like this:

[42703] ERROR: column "FOO" does not exist

When I manually set it to include single quotes 'FOO' it works.

I've tried padding escaped single quotes. I've tried the quote_* functions. I've ried using "@" "$" and "?" params stypes. This keeps popping up.

EDIT

Eliminating as much as I can, I tried the following from the sql console in IntelliJ

SELECT * from A where A.B = :p1 
SELECT * from A where A.B = ? 
SELECT * from A where A.B = @p1

And adding "Foo" the parameter to in the edit box. In all three cases, I get the same problem. When I add 'Foo' to the edit box, I get the results I expect.

I also used preparedStatement and ? rather than callableStatement with :p1 and also got the same results.

What am I doing wrong?

EDIT

Removing "stringtype=unspecified" from the JDBC URL seems to make the problem go away. This is why you shouldn't just copy snippets or other peoples code and just assume it will work for you.

link|improve this question

So you're saying the someone isn't quoting the :p_name value when it is substituted into the query? How are you binding the :p_name value? – mu is too short Jun 9 '11 at 3:07
1  
If you are using a PreparedStatement you need to use a ? instead of a named parameter. – a_horse_with_no_name Jun 9 '11 at 6:30
@mu I am binding via asString – sal Jun 9 '11 at 13:37
@a_horse I tried using "?" with the same results. – sal Jun 9 '11 at 13:38
Please show us your Java code. – a_horse_with_no_name Jun 9 '11 at 14:51
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.