GLBasic forum

Main forum => GLBasic - en => Topic started by: Hotshot on 2016-Jun-17

Title: Making Database?
Post by: Hotshot on 2016-Jun-17
How would I make Database of Football Players? reading from text files(from notepad as that would make less coding)

I know that Type is better than Arrays but are they the faster when come adding players when come to buy and removing player if been sold?  O_O
Title: Re: Making Database?
Post by: MrPlow on 2016-Jun-19
Hi

Speed or Array and Type creating or writing wouldn't be a concern I think.

Unless you were processing hundreds or thousands in one go from a data import.

But individually retrieving or creating - that wouldn't be noticeable to a user.

So I would go with Types and u can loop through and manage easier that way.

Title: Re: Making Database?
Post by: Hotshot on 2016-Jun-20
thanks man and I will try that :)