Tell me how in this example to decode the second column (content) from base64 and display both columns in the datagridview?
System.IO.StreamReader sr = new System.IO.StreamReader(openFileDialog1.FileName); sr.Close(); string filename = openFileDialog1.FileName; string sql = "SELECT datetime(datetime_int,'unixepoch'), content FROM sms"; var conn = new SQLiteConnection("Data Source=" + filename + ";Version=3;"); conn.Open(); DataSet ds = new DataSet(); var da = new SQLiteDataAdapter(sql, conn); da.Fill(ds); dataGridView1.DataSource = ds.Tables[0].DefaultView;