CD/LP DataBank

BlitzMax Forums/BlitzMax Beginners Area/CD/LP DataBank

dalaware(Posted 2008) [#1]
Hi

Is it possible to program a simple data bank in Blitzmax,
if so anybody made a tutorial or can Help? Most tutorials are for game programming. I have the Modula MaxGui but I can not find
Any good tutorials on basic simple Data bank programming I know how to make windows and buttons what I need now is bit more Information. Is it possible In Blitzmax to use?
The commands Data, Restore and Dim[].
Thanks in advance.


jsp(Posted 2008) [#2]
If the 'database' will not be that big, have a look at the TMap command. A sticky thread can also be found in the BlitzMax Programming, which explains it a bit more.
For a real database you should may check out Brucey's Modules, he has a MySQL driver available.


Beaker(Posted 2008) [#3]
Data = DefData
Restore = RestoreData
Dim = Local/Global myArray[30]
?

I don't really understand. :)