Giorgi / DuckDB.NET

Bindings and ADO.NET Provider for DuckDB
https://duckdb.net
MIT License
356 stars 62 forks source link

Linux support [feature-request] #1

Closed cocowalla closed 3 years ago

cocowalla commented 3 years ago

Hi, I'm interested in trying DuckDB from .NET, and naturally came across your bindings. I see support for Windows and MacOS already exist, and was wondering if you had plans to add Linux support?

Giorgi commented 3 years ago

Adding Linux support is as simple as making a copy of NativeMethods.Windows.cs class and replacing DllImports to use libduckdb.so instead of dll file. I don't have a Linux environment set up so maybe you could send a PR?

Giorgi commented 3 years ago

Implemented in 605b8b809770738578d7fb8155c22ba21f1b99d3

Giorgi commented 3 years ago

@cocowalla Can you check 0.1.1 version of the library?