qwazimoto
Active member
- Joined
- Oct 20, 2006
- Messages
- 39
- Programming Experience
- Beginner
Hi people
I am in my first year of programming, Im learning VB.net and I am building a media player using the WMP component. I would like to know which is the best way to store media info given the options of a MS Access data base, or a random access file, or create a structure for each song and add to a collection and serialize the collection, well I guess deserializing is the key, and I guess a .txt file is an option too. I have built some simple media players before but, having 5000 songs it takes a signifigant amount of time to load, and as I understand an MS Access database isnt realy all that reliable for anymore than 4000 rows of data (am I correct with this?).
The Database will need 8 or so columns, structure 8 variables and well if im using a text file I dont really need any advice on that, other than if it is better suited to my application. I have always used txt files for my media players and the results not being all that impresive. I also would like to know how to go about the fastest way of putting this data into a listview box currently I declare a listview item create an array for the data in the listview row and set the Items contents to the array and then add to listview in a for loop...
NOTE:The media information only needs to be read once(when loading)
(any options i miss or am unaware of please tell)
Thanks in advance...
I am in my first year of programming, Im learning VB.net and I am building a media player using the WMP component. I would like to know which is the best way to store media info given the options of a MS Access data base, or a random access file, or create a structure for each song and add to a collection and serialize the collection, well I guess deserializing is the key, and I guess a .txt file is an option too. I have built some simple media players before but, having 5000 songs it takes a signifigant amount of time to load, and as I understand an MS Access database isnt realy all that reliable for anymore than 4000 rows of data (am I correct with this?).
The Database will need 8 or so columns, structure 8 variables and well if im using a text file I dont really need any advice on that, other than if it is better suited to my application. I have always used txt files for my media players and the results not being all that impresive. I also would like to know how to go about the fastest way of putting this data into a listview box currently I declare a listview item create an array for the data in the listview row and set the Items contents to the array and then add to listview in a for loop...
NOTE:The media information only needs to be read once(when loading)
(any options i miss or am unaware of please tell)
Thanks in advance...