Hello.
What is the best way to create a database in unity?
I need to, upload, delete, insert, save a lot of data
(I have not tried to use player prefs, because many data)
I work in android and script in java.
thank you very much.
Hello.
What is the best way to create a database in unity?
I need to, upload, delete, insert, save a lot of data
(I have not tried to use player prefs, because many data)
I work in android and script in java.
thank you very much.
Hello,
Client side applications don’t ever use databases. They are way too advanced, complicated and excessive. Especially if you are using Android as a platform
The best solution is usually to use System.IO
and save text or byte data as files. It’s quite easy to do and the FileStreamer
allows you to do it asynchronously without much of a performance impact. There are plenty of tutorials out there on how to save files etc.
Hope this helps,
Benproductions1