Using INET types in prepared statements

From: "LITTLE Nelson" <nelson(dot)little(at)tenix(dot)com>
To: <pgsql-sql(at)postgresql(dot)org>
Subject: Using INET types in prepared statements
Date: 2007-06-13 02:03:12
Message-ID: 200706130203.l5D23Cs2026506@sprint2.tenix.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi,

I am trying to create a prepared statement in JAVA via JDBC and one of
the parameters I need to set in the SQL statement is of type INET. As
there is no setInet() method how do I pass in the INET value into the
sql statement?

I have tried this:

" WHERE b.ip = ?::inet"

But I get "org.postgresql.util.PSQLException: ERROR: cannot cast type
character varying to inet"

I also tried

" WHERE b.ip = ?"

And I get "org.postgresql.util.PSQLException: ERROR: cannot cast type
character varying to inet"

I really want to use prepared statement as I have to run this SQL
statement over and over and it is supposed to be more efficient.

Can anyone help?

Cheers,

Nelson

Disclaimer :
The contents of this e-mail including any attachments are intended only
for the person or entity to which this e-mail is addressed. If you are not,
or believe you may not be, the intended recipient, please advise the sender
immediately by return e-mail, delete this e-mail and destroy any copies.
Tenix does not warrant nor guarantee that this email communication is free
from errors, virus, interception or interference.

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2007-06-13 02:45:45 Re: Using INET types in prepared statements
Previous Message Rodrigo De León 2007-06-11 14:44:33 Re: cluster index on primary key