Hello,
I’m trying to get SQLite working with Unreal Engine 5.5.4 in order to use a local relational database in my game. I need to be able to send SQL queries.
I’ve tried a hundred different approaches:
- Enabling SQLite and SQLite Support from Edit → Plugins
- Downloading the SQLite amalgamation from SQLite Download Page and manually importing it into the project:
nginx
CopierModifier
MyProject
├── Source/
│ ├── BorderLine/
│ └── ThirdParty/
│ └── SQLite/
│ ├── sqlite3.c
│ └── sqlite3.h
I haven’t been able to get it working.
Does anyone have any recommendations, please?