Creating Extensions? #3797
Unanswered
TheOriginalBytePlayer
asked this question in
Q&A
Replies: 2 comments 2 replies
-
Hmmmm. I guess it depends if you're any good with C and or C++ programming? SQLite itself is written in C, whereas our application is written in C++. Depending upon your skill set it might be more feasible to approach this from a few different directions. 😄 |
Beta Was this translation helpful? Give feedback.
0 replies
-
I am a delphi programmer but I can write dlls and dylibs callable by C++ programs... |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is it possible to for me to create custom extensions for SQLiteBrowser, and if so, what are the required parameters?
The reason I want to do this is that in my company's program, I am using SQLite3 less as a traditional database, and more as a storage mechanism for my program's project. Because the data in the DB is (from the user's point of view) effectively one single document, I need to have the kinds of undo mechanisms one would expect for such a thing. To that end, I have created a real-time automatic undo system through a series of OnBefore Triggers which all use a custom SQLiteFunction ShouldUndo() to know whether to store the undo or not.
When I bring the project file into SQLiteBrowser, I have to first delete all the triggers before I can do anything as it doesn't understand the function ShouldUndo(). If I could create my own extension that supplied that function, it would make my life SO much easier.
So, can this be done, and where do I start if it can?
Beta Was this translation helpful? Give feedback.
All reactions