Update spatialite.rst (#413)

a line of sql added to create the idx_<table_name> in the python recipe
optional-hash^2
joelondon 2019-03-15 05:06:45 +00:00 zatwierdzone przez Simon Willison
rodzic 2855667908
commit 9e8c36793b
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -68,6 +68,8 @@ Here's a recipe for taking a table with existing latitude and longitude columns,
UPDATE events SET
point_geom = GeomFromText('POINT('||"longitude"||' '||"latitude"||')',4326);
''')
# Now add a spatial index to that column
conn.execute('select CreateSpatialIndex("museums", "point_geom");')
# If you don't commit your changes will not be persisted:
conn.commit()
conn.close()