Вопрос

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

Это было полезно?

Решение

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');
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top