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!