I’d like to add SQL integration as manually as possible (I hate relying on third-party plugins).
Initially, I’ll use it to save locally (on the user’s own machine).
I’m using Unreal Engine 5.1.
I’d like to add SQL integration as manually as possible (I hate relying on third-party plugins).
Initially, I’ll use it to save locally (on the user’s own machine).
I’m using Unreal Engine 5.1.
Hey there @nove0nove0! Generally if you’re looking for the most basic and manual method of interacting with an SQL server, I would just send HTTP requests (using the HTTP plugin in engine) to an API setup on the server to communicate with it. Though this requires you to have the server setup already.
Otherwise, locally I’d usually advise SQLite instead if you need something database-like.