Page 2 of 3

Re: MySQL?

Posted: Sun Apr 17, 2011 5:08 am
by BlackBulletIV
schme16 wrote:despite the 'keep it simple' attitude thats forming in the comments here, I still think its a great idea to have SQL available to use; Mind you, I use JSON to save my tables and such
Of course. If you're doing a large RPG or MMO I'm sure it'd be quite necessary to have a database.

Re: MySQL?

Posted: Sun Apr 17, 2011 7:36 am
by nevon
BlackBulletIV wrote:
schme16 wrote:despite the 'keep it simple' attitude thats forming in the comments here, I still think its a great idea to have SQL available to use; Mind you, I use JSON to save my tables and such
Of course. If you're doing a large RPG or MMO I'm sure it'd be quite necessary to have a database.
If you're making an MMO, the database wouldn't be on the client side (and the client would never be in direct contact with it). If you're making an RPG and require the user to install a DBMS, you're doing something wrong.

Re: MySQL?

Posted: Sun Apr 17, 2011 8:18 am
by BlackBulletIV
Yeah I know that, but for some reason I was thinking of a LOVE server side; but that would not be a good idea. As for an RPG, you could install DB system in an installer right? Not sure how that works for Linux though.

But anyway, unless the needs are really hardcore I think SQL isn't needed.

Re: MySQL?

Posted: Sun Apr 17, 2011 9:14 am
by nevon
BlackBulletIV wrote:As for an RPG, you could install DB system in an installer right? Not sure how that works for Linux though.
On Linux you'd just add a dependency to whatever DBMS you wanted. But it would still be extremely strange. I suppose something like SQLite would be somewhat reasonable, but yeah, you'd have to do some pretty hardcore shit to necessitate using a database.

Re: MySQL?

Posted: Sun Apr 17, 2011 9:46 am
by BlackBulletIV
*big red warning lights and sirens*

Re: MySQL?

Posted: Sat Apr 23, 2011 5:44 pm
by Freze
I never mentioned RPGs ;).
I'm going to need it to query a server, using MySQL. To get data, update data. Etcetera.

Re: MySQL?

Posted: Sat Apr 23, 2011 5:50 pm
by nevon
Freze wrote:I never mentioned RPGs ;).
I'm going to need it to query a server, using MySQL. To get data, update data. Etcetera.
That still seems like a really, really bad idea. What would be stopping me from editing your game to drop your entire database? It would be much better to keep the database handling on your server, and expose an API that your game can call.

Re: MySQL?

Posted: Sat Apr 23, 2011 5:51 pm
by Freze
It won't be a game. It'll be a managing tool for the ease of not browsing through shit. Just to make it easier. This. I'm not making a game off it.

Re: MySQL?

Posted: Sat Apr 23, 2011 7:42 pm
by nevon
Freze wrote:It won't be a game. It'll be a managing tool for the ease of not browsing through shit. Just to make it easier. This. I'm not making a game off it.
Oh, I see. In that case, I'm all for reinventing the wheel for shits and giggles.

Re: MySQL?

Posted: Sun Apr 24, 2011 2:56 am
by BlackBulletIV
But why on earth would you do it in LOVE!? Or... are you just asking about plain Lua and not LOVE?