I've created a point column in my MySQL database, Im now trying to pass data to that column from a form but I keep getting error messages
"Numeric value out of range: 1416 Cannot get geometry object from data you send to the GEOMETRY field"
I've found a reference here that seems to suggest I need to pass the results from my field back as raw although im not quite sure where to implement it. Would I do that in that in my model or my controller?
Any tips would be greatly appreciated.
Thanks,
Rowan
The important part is the select part which includes a raw db statement. You'll see I've added 'AsText(columnName)' . This AsText statement helps retrieve the data in text format rather than the binary format in which it is normally stored.