C#引用System.Data.SQLite操作SQLite数据库一例

本文演示了如何使用C#对SQLite数据库执行基本的CRUD操作,包括创建表、插入记录、查询记录等。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

环境安装SQLite.NET

引用内容

Create TABLE admin(username text,age integer);

下边用C#演示下如何对SQLite数据库进行记录的增、查、改、删操作:

程序代码
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SQLite; //引用System.Data.SQLite

public partial class Sqlite : System.Web.UI.Page
{
  protected void Page_Load(object sender, EventArgs e)
  {
  string _connectionString = @"Data Source=F:/mzwucom/bbs/db1.db";
  string _sql;

  SQLiteConnection conn = new SQLiteConnection();
  SQLiteCommand cmd;
  SQLiteDataReader dr;
  conn.ConnectionString = _connectionString;
  conn.Open();
  _sql = "insert into admin(username,age) values('user" + (new Random()).Next(1,100) + "',22)";
  cmd = new SQLiteCommand(_sql, conn);
  cmd.ExecuteNonQuery();
  _sql = "select * from admin";
  cmd = new SQLiteCommand(_sql, conn);
  dr = cmd.ExecuteReader();
  while (dr.Read())
  {
  Response.Write(dr["username"].ToString() + "," + dr["age"].ToString() + "<br/>");
  }
  }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值