Using sqlite3 to operate the database test.db
Can you help me see how to create, add, and modify a database? Thank you!
Maybe have a look at this project for inspiration
https://www.theswamp.org/index.php?topic=28286.0
Unless I can't read the (chinese?) error messages I assume that the linker complaints about unresolved externals, right? Due to "std::basic_string<char...>" I suspect that this might be an UNICODE/ANSI issue.
The best way to approach this is to download the SQLite Amalgamation
https://sqlite.org/download.html
Setup your solution with two projects.
Compile the SQLite Amalgamation as a static library
Static link to the new library from your ARX project.
This way you won’t have any DLLs to load.
Here's an old project that should better illustrate, it's an old version of SQLite, you can probably just drop in the new Amalgamation
The lisp is not required, but you can see how to use it from C++
Can't find what you're looking for? Ask the community or share your knowledge.