just ME
just ME

Reputation: 1827

clear missed calls error in android.database.SQLite

I have the following code for clear missed logs:

ContentValues values = new ContentValues();
        values.put(Calls.NEW, 0);
        values.put(Calls.IS_READ, 1);
        StringBuilder where = new StringBuilder();
        where.append(Calls.NEW);
        where.append(" = 1 AND ");
        where.append(Calls.TYPE);
        where.append(" = ?");

        context.getContentResolver().update(Calls.CONTENT_URI, values, where.toString(),
                new String[]{ Integer.toString(Calls.MISSED_TYPE) });

When running this code I get the following exception:

Caused by: android.database.sqlite.SQLiteException: no such column: is_read, while compiling UPDATE logs SET is_read=?, new=? WHERE (new = 1 AND type = ?) AND (logtype = 100 or logtype = 500)

How to solve this?

Upvotes: 0

Views: 527

Answers (1)

Dalmas
Dalmas

Reputation: 26547

Calls.IS_READ was introduced in API level 14.

You should only set this value if the device API is greater or equal to 14 :

values.put(Calls.NEW, 0);
if (android.os.Build.VERSION.SDK_INT >= 14)
    values.put(Calls.IS_READ, 1);

Upvotes: 1

Related Questions