0

I tried spatialite:

create table Twn_free_way as select * from Twn_road;

This works fine but I can not copy the complete table.

enter image description here

Jason Aller
  • 3,541
  • 28
  • 38
  • 38
  • 1
    I cannot read your mind. Some more details will help me help you. – Ram Apr 29 '14 at 13:39
  • 1
    I found SELECT RecoverGeometryColumn('Twn_free_way','GEOMETRY',4326,'POINT','XY') , AND in Qgis If You want trun CSV to sqlite ,You must to appropriate SRID in output menu. – user3513254 May 05 '14 at 08:47

1 Answers1

0

A geometry column must be described in the geometry_columns metadata table.

To add this entry, use the AddGeometryColumn function:

SELECT AddGeometryColumn('tablename', 'MyGeoColumn', 1234, 'POINT');
CL.
  • 173,858
  • 17
  • 217
  • 259