Help with databases
by Thomas Reynolds · in Torque Game Engine · 05/20/2011 (1:09 pm) · 4 replies
Hello all
I would like to know about databases in Torque.
Several things in specific, listed below
1) What is the easiest database file format to use/call
2) How would I create a database
3) How would I save/load to a database
4) Uses and organization of data
I know this is a lot of stuff, but if there is a tutorial or something you guys could refer me to, that would be extremely helpful.
Thanks
I would like to know about databases in Torque.
Several things in specific, listed below
1) What is the easiest database file format to use/call
2) How would I create a database
3) How would I save/load to a database
4) Uses and organization of data
I know this is a lot of stuff, but if there is a tutorial or something you guys could refer me to, that would be extremely helpful.
Thanks
About the author
Recent Threads
#2
I didn't read through the link topics, but they look helpful
05/20/2011 (2:13 pm)
I actually want to implement a simple save/load database into an existing game.I didn't read through the link topics, but they look helpful
#3
There is no out of the box support for databases built into torque.
05/27/2011 (7:58 am)
You can't use those resource as they require modification of the engine c++ code and it appears you aren't licensed to use Torque.There is no out of the box support for databases built into torque.
#4
05/29/2011 (8:22 am)
Maybe a psuedo-database then. All I really would like is a way to save/load data to and from a database file format like SQL.
Svengali
SvengaliGames
For single player games I recommend sqlite3 with this resource:
www.garagegames.com/community/resources/view/20583
For multi player online games I recommend odbc this resource:
www.garagegames.com/community/resources/view/9656
Both work with the Beta 3 and AFX. I imagine that they will still operate with the final version too.