rogerbinns / apsw

Another Python SQLite wrapper
https://rogerbinns.github.io/apsw/
Other
733 stars 97 forks source link

Calling RBU extension functions? #251

Open rcoup opened 6 years ago

rcoup commented 6 years ago

https://www.sqlite.org/rbu.html describes the key RBU extension functions (sqlite3rbu_*), and the full set is in https://sqlite.org/src/doc/trunk/ext/rbu/sqlite3rbu.h

While APSW allows me to build sqlite with the RBU extension included, is there a way to actually call the RBU functions?

rogerbinns commented 6 years ago

You are correct. I thought the SQL level stuff would be sufficient while adding, but at the end discovered that it can't be used at all without them. Doing this is on the list, but will take a while. (The time goes on documentation, testing, error handling etc.)