SQLite Forum

Documentation ambiguity around sqlite3_auto_extension
Login

Documentation ambiguity around sqlite3_auto_extension

(1.1) Originally by anonymous with edits by Richard Hipp (drh) on 2020-04-01 10:09:21 from 1.0 [source]

In this document there is the strong implication that sqlite3_auto_extension is only possible for statically linked extensions

https://sqlite.org/c3ref/auto_extension.html

However, it is made clear here that you can call sqlite_auto_extension once a run-time loadable extensions has been initialised:

https://www.sqlite.org/loadext.html

I thought this was a bit ambiguous, potentially the first document could include a caveat or note about this?

Thanks for all your hard work!