Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My app reads questions and their answers. Now I have to make it store them and read them from HDD. The idea is to read all data and store it in memory on app initialization, because speed is important.

But the problem is I lack the model of storing all this information in a file. I've been working with ini files only, but file size is limited and it is SO slow to read.

Could you please suggest a model and a sample? Thanks!

share|improve this question
If you lack the model how are you ever implementing your application? Where is this data stored? What is this application doing? The model is the first thing you should think of when starting a project. We don't know what your application is doing so it is difficult to suggest you a model. Once you have a model you can store it by serializing it. – Darin Dimitrov Jan 8 '11 at 14:11
Well, maybe Model is the wrong word. A solution perhaps is better. Application reads questions and their answers, this is done. Now I have to store them... – John black Jan 8 '11 at 14:12
Where it is reading those questions and answers from? How is it reading them? Are they displayed? Are they modified once displayed? Do you have an UI? – Darin Dimitrov Jan 8 '11 at 14:13

3 Answers

up vote 0 down vote accepted

Is this some sort of quiz, student and teacher sides, for creating and using the questions? How many questions could this get to? You would probably be looking at making a proper database, or more easily, XML or binary serialisation. Have a look at these links. They were written for .net 2, but are very nicely done, and should be perfectly usable:

XML: http://www.switchonthecode.com/tutorials/csharp-tutorial-xml-serialization

File (binary) Less human readable: http://www.switchonthecode.com/tutorials/csharp-tutorial-serialize-objects-to-a-file

You don't even have to keep it as the same extension either, although I will not recommend that either way. I quite like the look of the second link for you, with a personalised file extension.

Good luck!

share|improve this answer
Exactly what I needed!! Thanks a lot! – John black Jan 8 '11 at 16:49
You are more than welcome! Glad to have been of assistance! – niemiro Jan 8 '11 at 19:53

You could use the nice SQLite flat file database (this allows you to use standard SQL to select / update / insert your data).

.NET bindings are available here. A starters tutorial can be found here.

share|improve this answer

Just an idea. I had kind of the same issue. For keeping it simple (I didn't have any db available) I used lists of classes for maintaining the data in memory and then used XML-serialization to store them on disk between sessions. Maybe not the purest of models but simple enough.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.