I\'m trying to populate my DB with geographical places of my country. One of my tables have 4 fields: ID[PK], latitude. longitude ande geoPoint
EDIT `SCDBs`.`Pu
You need to use this syntax:
UPDATE ... SET latitude=18, longitute=-63, geoPoint=GeomFromText('POINT(18 -63)') WHERE ...
Try doing it without assigning your values to server values. Especially if they contain function calls. MySQL treats the contents of the variables as plain text and won't see that there's a function call in there.
UPDATE ... SET latitude=18, longitute=-63, geoPoint=POINT(18 -63) WHERE ...