Direct access to sqlite C api functions #123
Answered
by
zombiezen
theimpostor
asked this question in
Q&A
-
Is it possible to access the sqlite C functions directly? Specifically I had a need to use sqlite3_keyword_check, and it's not obvious to me how to call it using this package. I suppose other APIs could be useful as well. |
Beta Was this translation helpful? Give feedback.
Answered by
zombiezen
Jul 1, 2025
Replies: 1 comment 2 replies
-
Yes, you can use the underlying |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
theimpostor
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, you can use the underlying
modernc.org/sqlite/lib
package. It's a little uncomfortable to use, since it needsunsafe
. I'd be happy to accept a PR that wraps this API, though.