UNIDAC and SQL Server Geometry & Geography Data Types
Posted: Thu 12 May 2011 03:47
Hi,
Can you add this futures in UNIDAC?
Best Regards
Yaghoobi
Can you add this futures in UNIDAC?
Best Regards
Yaghoobi
Discussion forums for open issues and questions concerning database tools, data access components and developer tools from Devart
https://forums.devart.com/
Code: Select all
UniQuery.SQL.Text := 'insert into test_geo(id, geom, geog) values(:id, :geom, :geog)';
UniQuery.ParamByName('id').AsInteger := 1;
UniQuery.ParamByName('geom').AsMemo := 'LINESTRING(100 100, 20 180, 180 180)';
UniQuery.ParamByName('geog').AsMemo := 'LINESTRING(-122.360 47.656, -122.343 47.656)';
UniQuery.ExecSQL;