All Questions
5 questions
4
votes
1
answer
296
views
SQLite database for books
First, my Book object:
...
1
vote
2
answers
721
views
Properly structuring SQLite classes/operations in Android
I am new to Android development and I want to ensure I'm learning decent practices for doing things. Right now this is my database class, which currently allows me to make a new instance of the ...
6
votes
1
answer
523
views
Using SQL to reorder items in a list view - is this efficient?
I'm writing an application for work that requires me to process a list of transactions. The list is small (5 records at the most) and I'm required to display that data in an android ...
3
votes
2
answers
158
views
Adding a list of brokers to a local SQLite database
I have this piece of Java (Android) code that adds a list of brokers to a local SQLite database as one single SQL instruction.
...
6
votes
1
answer
495
views
Database interaction logic
I have a database-intensive app, almost every activity requires access to the database, both reading and writing.
I had a lot of problems with separate threads and activities on the stack closing ...