【一个小类,SQLiteHelper,旨在简化SQLite在C#中的使用。】
【using (SQLiteConnection conn = new SQLiteConnection("data source=C:\\data")){ using (SQLiteCommand cmd = new SQLiteCommand()) { cmd.Connection = conn; conn.Open(); SQLiteHelper sh = new SQLiteHelper(cmd); // do something... conn.Close(); }}
核心代码】
评论