raaj
raaj

Reputation: 3291

Selecting a Point datatype from MYSQL

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

Answers (1)

eggyal
eggyal

Reputation: 125955

Use MySQL's AsText() function:

SELECT AsText(myPoint) FROM myTable

Upvotes: 1

Related Questions