Database for Java?

Started by
9 comments, last by kop0113 9 years, 6 months ago

If your usage of the database is quite low and your server can do its own locking (i.e an exclusive lock of the whole database whilst saving some player stats), then I might recommend SQLite.

There are a few java bindings knocking around like: http://code.google.com/p/sqlite4java

SQLite is cool because it is very easy to migrate between servers and does not rely on sockets so your game server can access it directly (obviously this means you want the SQLite database on the same server).

http://tinyurl.com/shewonyay - Thanks so much for those who voted on my GF's Competition Cosplay Entry for Cosplayzine. She won! I owe you all beers :)

Mutiny - Open-source C++ Unity re-implementation.
Defile of Eden 2 - FreeBSD and OpenBSD binaries of our latest game.

This topic is closed to new replies.

Advertisement