• 大小: 5.15M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2024-04-28
  • 语言: C#
  • 标签: SQLite  数据库  sql  查询  C#  

资源简介

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();
            
        }
       
    }
}



评论

共有 条评论