Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am creating a database and I have managed to create and store data in LogCat. I am wondering how to display this data on the emulator screen so users can view it. Here is some of my code:

Log.d("Insert: ", "Inserting ..");

    db.addContact(new Contact("Andy", "123456789"));
    db.deleteContact(new Contact(29, "John", "9100000000"));

    // Reading all contacts
    Log.d("Reading: ", "Reading all contacts..");
    List<Contact> contacts = db.getAllContacts();       

    for (Contact cn : contacts) {
        String log = "Id: "+cn.getID()+" ,Name: " + cn.getName() + " ,Phone: " + cn.getPhoneNumber();
            // Writing Contacts to log
    Log.d("Name: ", log);
share|improve this question
3  
I have managed to create and store data in LogCat. strange :) – M Mohsin Naeem Nov 18 '12 at 18:06
2  
This is quite obvious, that you did not write this yourself. Otherwise you would know how to get all the data from your database. – Ahmad Nov 18 '12 at 18:20

closed as not a real question by Simon, Ahmad, George Stocker Nov 19 '12 at 16:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

From your code I can see that you have a class called contacts where you store all your contacts/data. So you should do something like that inside your database handler:

public List<contacts> getAllData() {
        List<contacts> dataList = new ArrayList<contacts>();
        // SQL - Selecting all data
        String selectQuery = "SELECT  * FROM " + YOUR_DATABASE_NAME;
        SQLiteDatabase db = this.getWritableDatabase();
        Cursor cursor = db.rawQuery(selectQuery, null);

        // looping trough the db
        if (cursor.moveToFirst()) {
            do {
                // Add your data in here
                contactList.add(contacts);
            } while (cursor.moveToNext());
        }
            cursor.close();

        // return list
        return dataList ;
    }

After this you can call it with something like that:

DatabaseHandler db = new DatabaseHandler(Context);
List<contacts> data = db.getAllData();

Now loop trough it and display it in a ListView for example.

share|improve this answer
Instead of copying the data from Cursor to List<contacts>, you could also use the Cursor directly. Converting is usually the better idea though. P.s.: add a cursor.close() before the return or you get warnings in logcat. – zapl Nov 18 '12 at 18:38
@zapl hmm yes you're right for both things. Thanks :) – Ahmad Nov 18 '12 at 18:42

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