• 大小: 2.16KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: SQLite  数据库  sql  

资源简介

操作sqllittle数据库的类个人封装

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.Common;
using System.Data.SQLite;

namespace Tools.Data
{
    /// 
    /// 本类为SQLite数据库帮助静态类使用时只需直接调用即可无需实例化
    /// 

    public static class SQLiteHelper
    {
        #region ExecuteNonQuery
        /// 
        /// 执行数据库操作(新增、更新或删除)
        /// 

        /// 连接字符串
        /// SqlCommand对象
        /// 所受影响的行数
        public static int ExecuteNonQuery(string connectionString SQLiteCommand cmd)
        {
            int result = 0;
            if (connectionString == null || connectionString.Length == 0)
                t

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      20305  2010-05-05 15:34  SQLiteHelper.cs

----------- ---------  ---------- -----  ----

                20305                    1


评论

共有 条评论