Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using a webView in my Android application. My problem is weird because the application throw an exception : 07-20 08:33:21.013: ERROR/SQLiteDatabase(728): android.database.sqlite.SQLiteCantOpenDatabaseException: unable to open database file

and I'm not using any database, so I don't not how to solve it.

Source : inside the main activity in a onClick :

  String url = listeRubrique.get(rubriqueChoisit).getListeVideo().get(paramInt).getUrl();
    if (url != null)
        {
            Intent intent = new Intent(Main.this,Lecture.class);
            intent.putExtra("url",url);
            startActivity(intent);
        }

The second activity where the webview is : public class Lecture extends Activity {

    private WebView webView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.lecture);

        webView = (WebView)findViewById(R.id.webview);
        webView.getSettings().setJavaScriptEnabled(true);
        Intent myIntent = getIntent();
        webView.loadUrl(myIntent.getStringExtra("url"));
    }
}

There all my First Activity :

package com...

import java.util.ArrayList;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.Button;
import android.widget.ListView;
import android.widget.TextView;

import com...

public class Main extends Activity {

//Listes
ArrayList<Video> listeVideo = new ArrayList<Video>();
ArrayList<Chapitre> listeRubrique = new ArrayList<Chapitre>();
//ListViews
private ListView listViewVideo;
private ListView listViewRubrique;
//TextViews
private TextView tvTitreRubrique;
private TextView tvDescriptionRubrique;
private TextView tvTitreVideo;
private TextView tvDescriptionVideo;
private TextView tvDureeVideo;
//Button
private Button btLancer;

int rubriqueChoisit;
int videoChoisit;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    listViewVideo =(ListView)findViewById(R.id.listContenuRubrique);
    listViewRubrique =(ListView)findViewById(R.id.lvContenu);

    tvTitreRubrique = (TextView)findViewById(R.id.tvTitreRubrique);
    tvDescriptionRubrique = (TextView)findViewById(R.id.tvDescriptionRubrique);
    tvTitreVideo = (TextView)findViewById(R.id.tvTitreVideo);
    tvDescriptionVideo = (TextView)findViewById(R.id.tvDescriptionVideo);
    tvDureeVideo = (TextView)findViewById(R.id.tvDureeVideo);

    btLancer = (Button)findViewById(R.id.btLancer);

    listeVideo.add(new Video(1,"Titre","My Link","Description de la video"));

    listeRubrique.add(new Chapitre(1,"...","...",listeVideo));


    ListViewRubriqueAdapter rubriqueAdapter = new ListViewRubriqueAdapter(Main.this, listeRubrique);
    listViewRubrique.setAdapter(rubriqueAdapter);

    listViewRubrique.setOnItemClickListener(new OnItemClickListener(){
        public void onItemClick(AdapterView<?> paramAdapterView, View paramView, int paramInt, long paramLong)
        {

            ListViewVideoAdapter videoAdapter = new ListViewVideoAdapter(Main.this, listeRubrique.get(paramInt));
            listViewVideo.setAdapter(videoAdapter);

            tvTitreRubrique.setText(listeRubrique.get(paramInt).getTitre());
            tvDescriptionRubrique.setText(listeRubrique.get(paramInt).getDescription());
        }
    });

    listViewVideo.setOnItemClickListener(new OnItemClickListener(){
        public void onItemClick(AdapterView<?> paramAdapterView, View paramView, int paramInt, long paramLong)
        {

            String url = listeRubrique.get(rubriqueChoisit).getListeVideo().get(paramInt).getUrl();
            if (url != null)
            {
                Intent intent = new Intent(Main.this,Lecture.class);
                intent.putExtra("url",url);
                startActivity(intent);
            }
        }
    });
}

}

Thanks in advance for any clue.

share|improve this question

2 Answers

This problem is caused by an update to your application. Sometimes when upgrading the application the permissions of the cache directories are stuck so that your application cannot write to them. I have found that the permissions for the directories remain under the old PID while the upgraded application is assigned a new PID. Unfortunately, there is no way to update the old installation permissions/PID pairing.

This causes your problem and as far as I can see there is nothing that can fix this except a factory reset of the device.

See http://code.google.com/p/android/issues/detail?id=949 or search for similar exceptions where SQLite cannot open/write or SharedPreferences also experience similar problems.

share|improve this answer
should be marked as answer – Sunny Kumar Aditya Jun 12 '12 at 9:04
   webView = (WebView)findViewById(R.id.webview);
   webView.getSettings().setJavaScriptEnabled(true);
   Bundle bundle = getIntent().getExtras();       
   webView.loadUrl(bundle.getString("url"));
share|improve this answer
Hello rassel, I've tried it, but I get the same problem :07-20 09:08:58.731: ERROR/SqliteDatabaseCpp(864): sqlite3_open_v2("/data/data/com.genicorp.vdeo.prototype/databases/webview.db", &handle, 6, NULL) failed 07-20 09:08:58.811: ERROR/SQLiteDatabase(864): Failed to open the database. closing it. 07-20 09:08:58.811: ERROR/SQLiteDatabase(864): android.database.sqlite.SQLiteCantOpenDatabaseException: unable to open database file 07-20 09:08:58.811: ERROR/SQLiteDatabase(864): at android.database.sqlite.SQLiteDatabase.dbopen(Native Method) ... – Gen Jul 20 '11 at 9:11
show more code of your first Activity – Rasel Jul 20 '11 at 9:12
when you getting the error.when launching or when click on the list item? – Rasel Jul 20 '11 at 9:34
When I click on the list item. – Gen Jul 20 '11 at 10:45
check String url.see by blocking the line.may be this line is creating the problem.check also Video and chapitre that created the lists – Rasel Jul 20 '11 at 10:49
show 2 more comments

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.