Changes between Version 5 and Version 6 of SpatiaLite


Ignore:
Timestamp:
Apr 13, 2011, 2:34:14 PM (13 years ago)
Author:
martinl
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • SpatiaLite

    v5 v6  
    1717To load all the tables of a schema from Postgres to Spatialite (with or without geometry) and without the views:
    1818{{{
    19 $ ogr2ogr.exe --config PG_LIST_ALL_TABLES YES --config PG_SKIP_VIEWS YES -f "SQLite" mydb.sqlite -progress PG:"dbname='mydb' active_schema=myschema schemas=myschema host='localhost' port='5432' user='myuser' password='mypass' " -lco LAUNDER=yes -dsco SPATIALITE=yes -lco SPATIAL_INDEX=no
     19$ ogr2ogr --config PG_LIST_ALL_TABLES YES --config PG_SKIP_VIEWS YES -f "SQLite" mydb.sqlite -progress PG:"dbname='mydb' \
     20  active_schema=myschema schemas=myschema host='localhost' port='5432' user='myuser' password='mypass' " -lco LAUNDER=yes \
     21  -dsco SPATIALITE=yes -lco SPATIAL_INDEX=no
    2022}}}