Duxducis
Duxducis

Reputation: 457

How can I use mySQL for local file storage?

I really like how mySQL works, and I wish to use mySQL in my program as a simple and efficient way to store the user's data, but that would mean storing it in the computer. My option would be run a mySQL server on the user's computer as it would run on a web server, but what other ways are there. Is there a way to do this without connecting using network? Is there any other kind of system like mysql that would work in this case?

Upvotes: 0

Views: 287

Answers (2)

totymedli
totymedli

Reputation: 31156

SQL is a special-purpose programming language. MySQL is a relational database management system.

You can use SQL in a lot of database management system for desktop too. You can see the list of relational database management systems how many systems are there.

I would suggest SQLite because of its simplicity, portability and for the little space/environment it needs. Best of all that it is under the public domain, so totally free.

Upvotes: 0

RvdK
RvdK

Reputation: 19800

You could also try to look at SQLite which is a DB in a single file. Probably easier to use than MySql.

SQLite

Upvotes: 2

Related Questions