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 trying to send query to contacts database:

String CONTACTS = "/data/data/com.android.providers.contacts/databases/contacts.db";
SQLiteDatabase sqlDB;
try{
   sqlDB = SQLiteDatabase.openDatabase(CONTACTS,null, SQLiteDatabase.OPEN_READONLY);
}catch(SQLiteException sqlE){
   Log.e(TAG, sqlE.getMessage());
}
callCursor = sqlDB.rawQuery("SELECT _id, date, duration, number, type, name, numbertype,  COUNT(*) as cnt FROM calls WHERE ( 1=1 ) GROUP BY (number) ORDER BY cnt DESC", null);

But I get the error

05-04 15:21:28.271: E/SQLiteDatabase(883): android.database.sqlite.SQLiteCantOpenDatabaseException: unable to open database file

What is the reason?

share|improve this question
Your SQL also looks wrong. – Mark Byers May 4 '12 at 11:20
It is crashs before SQL query on sqlDB = SQLiteDatabase.openDatabase(CONTACTS,null, SQLiteDatabase.OPEN_READONLY); – Vitaly May 4 '12 at 11:31
Yes I know, so I think you have two problems: one is that you can't connect, and the second is that even if you do connect, your query is wrong so it still won't work. – Mark Byers May 4 '12 at 11:35
This SQL query allready was used. Even I must using qb.query(SQLiteDatabase db, CALL_LOG_GROUP_PROJECTION, "_id = _id", null, Calls.NUMBER, null, "_id DESC") but and here i must have SQLiteDatabase. – Vitaly May 4 '12 at 11:48

1 Answer

String CONTACTS = "/data/data/com.android.providers.contacts/databases/contacts.db"; should be String CONTACTS = "/data/data/com.android.providers.contacts/databases/contacts2.db";

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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