Re: Prepared statement with function as argument: how to bind values? - Mailing list pgsql-jdbc

From Sivakumar
Subject Re: Prepared statement with function as argument: how to bind values?
Date
Msg-id 1395728007716-5797354.post@n5.nabble.com
Whole thread Raw
In response to Re: Prepared statement with function as argument: how to bind values?  (alexbruy <alexander.bruy@gmail.com>)
List pgsql-jdbc
I think it's too late to respond for this issue, but i hope it will be useful for someone else. I also faced the same issue of binding, how i solved is String sql = "INSERT INTO poi(geom,latitude,longitude,description,comment) VALUES (ST_GeomFromText(?, 4326), ?, ?, ?, ?)"; stmt = conn.prepareStatement(sql); stmt.setString(1, "POINT(" +lon + " " + lat + ")"); stmt.setFloat(2, lon); stmt.setFloat(3, lat); stmt.setTimestamp(4, descr); stmt.setString(5, comment); Thanks, Sivakumar

View this message in context: Re: Prepared statement with function as argument: how to bind values?
Sent from the PostgreSQL - jdbc mailing list archive at Nabble.com.

pgsql-jdbc by date:

Previous
From: David Johnston
Date:
Subject: Re: Prepared statement with function as argument: how to bind values?
Next
From: Dave Cramer
Date:
Subject: Re: Postgres jdbc build broken with plain ant since e7c2c93