Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
4 votes
1 answer
296 views

SQLite database for books

First, my Book object: ...
The 29th Saltshaker's user avatar
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 ...
user6419910's user avatar
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 ...
sotrh's user avatar
  • 195
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. ...
John's user avatar
  • 33
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 ...
JonWells's user avatar
  • 323