Fix SQL syntax error

This commit is contained in:
tcdlpds@gmail.com 2020-10-01 12:09:20 +05:30
parent 725afbcc42
commit 4fdfc07e64

View File

@ -170,8 +170,8 @@ public class GeofenceDAOImpl implements GeofenceDAO {
"DESCRIPTION = ?, " +
"LATITUDE = ?, " +
"LONGITUDE = ?, " +
"RADIUS = ? " +
"GEO_JSON = ? " +
"RADIUS = ?, " +
"GEO_JSON = ?, " +
"FENCE_SHAPE = ? " +
"WHERE ID = ?";
try (PreparedStatement stmt = conn.prepareStatement(sql)) {