how to read from sqlite c# code example
Example: sqlite connection c#
using System.Data.SQLite;
SQLiteConnection.CreateFile("TestDB.db3")
SQLiteConnection conn = new SQLiteConnection(@"data source = TestDB.db3");
conn.Open();
SQLiteCommand cmd = new SQLiteCommand("create table table1 (username TEXT, password TEXT)", conn);
cmd.ExecuteNonQuery();
Console.WriteLine("Enter the username");
string UserName = Console.ReadLine();
Console.WriteLine("Enter Password");
string PassWord = Console.ReadLine();
SQLiteCommand cmd2 = new SQLiteCommand("insert into table1 (username, password) values ('"+Username+"', '"+PassWord+"')", conn);
cmd2.ExecuteNonQuery();