How can I interact with my own SQLite databases in Unreal Engine 4? Can it be done via blueprint and C++ or would it have to be purely C++?
SQLite in Unreal Engine 4
8.4k Views Asked by Phil D. At
2
How can I interact with my own SQLite databases in Unreal Engine 4? Can it be done via blueprint and C++ or would it have to be purely C++?
Accessing SQLite from Unreal Engine can be done either from the blueprint (I haven't done it), but, check the TappyChicken blueprint example, the SaveGame class can store / load many variables through any event you want. Also here is a good video on YouTube:
http://www.youtube.com/watch?v=v0WRumU-gOk
In regards to the code, I use https://github.com/afuzzyllama/DataAccess. Try it out. It can save UObjects to a local database, sqlite.
For example: