I'm developing a "funny quotes" app for android. I have over 1000 quotes which I want to use inside my app but I don't know whether I should use a database or text file. Please note that the app should not read the same sentence twice. and it has a previous/next button so i need to keep track of the previous quotes. please tell me which one is better and more optimized. Also, if you can please link me to a good tutorial about storing/reading the data.

thanks

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

Use a database. It's faster and more flexible than a text file. One day you will extend the app and then you will be glad you used a database. I recommend to, when you boot up the app, just select all the rows using the in-built random functionality of your database. 1000 rows should not take too long. Then just iterate through the resulting ArrayList (or whatever you choose to use) of strings you end up with - the first quote you show will be element 0 from that list, the second element element 1 from that list, and so on. If you use this approach, you won't need any other structure to keep track of used quotes - just use the iterator variable that you use for indexing the quote array.

fetchAllRows on this page seems to be what you want for getting the data.

If you choose not to keep too much in memory, you could keep just a list of quote IDs that have been used so far. The last element of that list would be the current quote, and the previous elements would be what the user should see when they press the back button.

link|improve this answer
1  
I agree with christian and you might want to consider hooking the database to a web service so you could update the strings without requiring the user to download a new version of the app. Google's app engine is a great service and is free unless you exceed a certain amount of calls for something. code.google.com/appengine – MikeIsrael Jan 1 at 15:05
The writing you would want to do just once. Could you maybe pre-populate it and ship it with your application (or have it read-only over a network)? If not, then consider just checking if it is populated, and then populating it. – Christian Jonassen Jan 1 at 15:05
keeping data in memory might not be optimal (as I think this will be a mobile app). Also we will not be able to maintain the state easily about the quotes which have been rad already. All these cons point towards using a DB which you also endorse. – Nrj Jan 1 at 15:08
It all depends on what you want, what you can do, and what your bottlenecks are. =) – Christian Jonassen Jan 1 at 15:14
feedback

If you will never read the same string twice the I will recommend you to not use String class as there objects are immutable and will stick in the string pool waiting to be reassigned to a reference, but that will never happen as you will never read the same string twice.

The use of DB's will over complicate things.

I suggest you to read a flat file in bytes and then translate them to StringBuider objects hence keeping it simple enough but still preventing intensive GC().

I hope it helps..

link|improve this answer
feedback

USing DB should be fine as I think you would not want all the data in memory. You can keep all the quotes in DB and keep a flag to keep track whether a quote was read or not (simply update it to true once read.)

This way you can choose from any of the quote which has the flag as false.

link|improve this answer
feedback

Have you considered CsvJdbc? You have the benefit of simple csv files with an easy upgrade path to a real database later when you have a significant number of records.

1k records is quite small and in my opinion not sufficient to merit a database.

link|improve this answer
feedback

make a String[] called "quotes" (or what you want)
and make a int called "quoteid" (or what you want)
then every time you push Next button the "quoteid" will increase by 1
and then get the quote text with quotes[quoteid]

link|improve this answer
But where should I store the quotes to load them into the string[]? – Nima Jan 1 at 15:03
in the "quotes" , quotes[0] = " Hi, this is a quote"; – tiranodev Jan 1 at 15:04
feedback

Your Answer

 
or
required, but never shown

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