ericsink / SQLitePCL.raw

A Portable Class Library (PCL) for low-level (raw) access to SQLite
Apache License 2.0
525 stars 109 forks source link

Support for sqlite3_carray_bind #404

Closed lstratman closed 3 years ago

lstratman commented 3 years ago

Are there plans to support sqlite3_carray_bind in the upcoming 2.0.5 release or is anyone actively working on it? It would be pretty useful for my company's product, so I'd be happy to give it a go and submit a PR, but I just wanted to make sure that I wouldn't be stepping on anyone's toes before I do that.

ericsink commented 3 years ago

No plans for that API yet.

Unfortunately, implementing it would be decidedly non-trivial. Currently, the e_sqlite3 builds are done using the SQLite amalgamation, and the carray stuff is not included in it. So, implementing this would require major changes to the build system I use for making e_sqlite3 native builds.

lstratman commented 3 years ago

Yep, saw when I started really looking into this that this would best be handled on our side via a loaded SQLite extension. Closing the issue...