xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

資源簡介

C#簡單連接查詢sqlite數據庫實例

資源截圖

代碼片段和文件信息

using?System;
using?System.Data.SQLite;


namespace?DataValidator
{
???
????class?Program
????{
????????static?void?Main(string[]?args)
????????{
????????????SQLiteConnection?con?=?new?SQLiteConnection(@“DataSource=D:\B\first.db“);
????????????con.Open();
????????????string?sql?=?“select?*?from?students“;
????????????SQLiteCommand?cmdQ?=?new?SQLiteCommand(sql?con);
????????????SQLiteDataReader?reader?=?cmdQ.ExecuteReader();
????????????while(reader.Read())
????????????{
????????????????Console.WriteLine(reader.GetString(0)?+?“?“?+?reader.GetInt32(1)?+?“?“);
????????????}
????????????con.Close();
????????????
????????}
???????
????}
}



評論

共有 條評論