Please give me code example to insert records containing SQL statement:
insert into TABLE
(id, value1, value2, point, value3)
values
(1,'A', 'M', POINT (13.45646, 56.61782),5);
in JDBC/Postgresql code.
If anyone has solution of PreparedStatement or anyother useful solution it is highly welcomed!
At the simplest level, you can build a prepared statement using geometry constructors to pass parameters.
Where
$3and$4are the longitude and latitude.See also the PostGIS documentation for the JDBC interface which may be useful with other geometry types (LineString, Polygon, MultiPoint, MultiLineString, MultiPolygon).