Offline database that works like MySql ?

Started by
5 comments, last by funvill 19 years, 10 months ago
We have a MySQL database online for our game that access and grabs info about items, equipment, level… Now we want to make an offline version of our game, what I’m looking for is a file database that I can make the same calls that I would with my MySQL database on this file database… Does this make any sense? I want an offline Database that works like MySQL. Thanks for any help you can provide. http://www.funvill.com
====Funvill[Home|Tiny xml|Boost|Wiki|STL]====================
Advertisement
just use MySQL, all you need to do for it to work "offline"
is set it up on the computer and use the loopback (localhost or 127.0.0.1) as the internet address.
"I am a donut! Ask not how many tris/batch, but rather how many batches/frame!" -- Matthias Wloka & Richard Huddy, (GDC, DirectX 9 Performance)

http://www.silvermace.com/ -- My personal website
use sqlite

don''t need to install mysql server on the computer, and is faster than mysql in some aspects.

http://www.sqlite.org/
re: silvermace
Would you let any random game that you downloaded off the internet install a mySQL server on your computer, i think not...

I need this file database to send to my users as a standalone offline version of my game.


re: DrEvil
http://www.sqlite.org/
looks good i will get to testing it 2more0

Thank you very much for your help and time.


http://www.funvill.com
====Funvill[Home|Tiny xml|Boost|Wiki|STL]====================
If my main memory isn''t overflowed, then there is a embedded version of mysql available, which is just a small dll file you distribute with your game, and of course the data
As the AP said
re: downgraded
i can''t believe that i did not knottiest the Embedded tab on MySql''s webpage before.

too bad Embedded MySQL is not free.
Thank you for your help and time


http://www.funvill.com
====Funvill[Home|Tiny xml|Boost|Wiki|STL]====================

This topic is closed to new replies.

Advertisement