Reputation: 3291
Good Day,
I am trying to get a point from an SQL column. CUrrently it is encoded as a string of characters: Gþ`C@Ëóàî¬Ë]À
So is there any way to actually decode it to get the actual value?
Upvotes: 0
Views: 108
Reputation: 125955
Use MySQL's AsText() function:
AsText()
SELECT AsText(myPoint) FROM myTable
Upvotes: 1