Hi Even,
st 30. 10. 2024 v 13:02 odesÃlatel Even Rouault
napsal:
> Add the "-oo LIST_ALL_TABLES=YES" open option to your ogrinfo call:
> https://gdal.org/en/latest/drivers/vector/sqlite.html
>
> (GPKG has a gpkg_contents table where non-spatial layers that are user
> facing are listed. There is
Martin,
Add the "-oo LIST_ALL_TABLES=YES" open option to your ogrinfo call:
https://gdal.org/en/latest/drivers/vector/sqlite.html
(GPKG has a gpkg_contents table where non-spatial layers that are user
facing are listed. There is no such thing in "pure" SQLite, and
historically the driver has
Hi all,
I have problem creating a new layer (no geometry) in SQLite data source:
"""
from osgeo import ogr
driver_name = "SQLite"
filename = "test.db"
driver = ogr.GetDriverByName(driver_name)
with driver.CreateDataSource(filename) as ds:
layer = ds.CreateLayer("test", geom_type=ogr.wkbNon