I'm using Geoserver and SQL Server 2008.
I have a table which has a column of [geography] type. I'm able to see the table showing up in Geoserver (I have installed the extension for SQL server) but it recognizes the column as type byte[] and not geography.
Can somebody suggest me a solution to this problem.
As from a previous post I have tried removing and reattaching the DB in Geoserver multiple times. Also the SQL server is showing that data is of type geography and is mapping it correctly. It's just Geoserver that sees the data as byte[].
I'm using this sql statement to convert the lat long columns into geography.
UPDATE [TestData].[dbo].[ShowMap] SET [Geo] = geography::Point([Latitude], [Longitude], 4326) GO