I am doing task to get history of Mozilla Firefox in my desktop application here is my code but i get Error No such table found:moz_places ,I searched out every where but i did't get solution . I get Reference of https://developer.mozilla.org/en-US/docs/Mozilla/Tech/Places/Database and https://www.youtube.com/watch?v=uRKeZSCwlyE
private void button2_Click(object sender, EventArgs e)
{
string Mozilla = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\Mozilla\Firefox\Profiles\iv6i2j75.default\places.sqlite";
SQLiteConnection cn = new SQLiteConnection("Data Source=" + Mozilla + ";Version=3;New=False;Compress=True;");
cn.Open();
SQLiteDataAdapter sd = new SQLiteDataAdapter("select url,title,visit_count,last_visit_date from moz_places", cn);
DataSet ds = new DataSet();
sd.Fill(ds);
dataGridView1.DataSource = ds.Tables[0];
cn.Close();
}
here is my error snap ..Any Suggestion will appreciated...!!