PDA

View Full Version : Viability of MySQL for data access for an RPG..


wazoo
11-15-2006, 11:26 AM
Hey everyone,

I'm designing my own cross-platform RPG game (and engine), and I'm interested in hearing about the viability of using something like MySQL for handling the storage of the game's data on the player's local machine.

I'm trying to keep the door open for the possibility of a server hosting a game world for players (but that's far into the future).

I'm really just trying to figure out the easiest way to manage the massive amount of data an RPG usually works with and I'm hoping to leverage an existing database solution that I can bundle into the game's install process...

thanks for any advice and/or tips..

Matthew
11-15-2006, 11:33 AM
Have a look at SQLite:

http://www.hwaci.com/sw/sqlite/

Diragor
11-15-2006, 11:35 AM
I always thought SQLite would be perfect for a local db of game data for a single-player rpg. It's very self-contained and simple.

wazoo
11-15-2006, 01:13 PM
Thanks very much for the SQLite suggestion(s). I'll definitely take a look!

much appreciated,