Re: [gdal-dev] ADBC driver and DuckDB on Windows

2025-07-12 Thread Seth G via gdal-dev
Thanks Even and Mike. Using GDAL master works (I presume due to this PR - https://github.com/OSGeo/gdal/pull/12635). Working example: ``` conda create --yes --name gdal-master conda activate gdal-master conda install -c gdal-master -c conda-forge gdal-master::gdal $env:Path = "D:\Tools\li

Re: [gdal-dev] ADBC driver and DuckDB on Windows

2025-07-12 Thread Even Rouault via gdal-dev
Mike, I don't remember the details but there's an issue (or at least used to be last time I tried) with the conda package libadbc-driver-manager on Windows. Le 12/07/2025 à 13:46, Michael Smith via gdal-dev a écrit : Seth, Have you tried adding https://anaconda.org/conda-forge/libadbc-drive

Re: [gdal-dev] ADBC driver and DuckDB on Windows

2025-07-12 Thread Michael Smith via gdal-dev
Seth, Have you tried adding https://anaconda.org/conda-forge/libadbc-driver-manager to your conda build and then adding duckdb.dll? Mike -- Michael Smith RSGIS Center – ERDC CRREL NH US Army Corps On 7/12/25, 6:51 AM, "gdal-dev on behalf of Seth G via gdal-dev" mailto:gdal-dev-boun

Re: [gdal-dev] ADBC driver and DuckDB on Windows

2025-07-12 Thread Even Rouault via gdal-dev
Seth, there has been an enhancement in *master* (not in 3.11) for being able to load libduckdb when the ADBC driver is built without libadbc-driver-manager support. So if you're not on master, this is expected Even Le 12/07/2025 à 12:45, Seth G via gdal-dev a écrit : Hi all, I'm wondering

[gdal-dev] ADBC driver and DuckDB on Windows

2025-07-12 Thread Seth G via gdal-dev
Hi all, I'm wondering if anyone has got this working on Windows? With a test.db the following works fine on a full Linux GDAL Docker image: docker run -it --name gdal-ubuntu -v D:/Data/GDAL:/data ghcr.io/osgeo/gdal:ubuntu-full-3.11.0 /bin/bash ogr2ogr out.gpkg test.db >From the docs https://gd