• 大小: 9.35KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: SQLite  help  sql  pe  比较  

资源简介

常用的几个SQLite数据库 辅助类(C#版本)

资源截图

代码片段和文件信息

/**************************************
* 作用:SQLLite Server操作实现
* 作者:Nick.Yan
* 日期: 2009-03-29
* 网址:www.redglove.net
**************************************/

using System;
using System.Collections;
using System.Collections.Specialized;
using System.Data;
using System.Data.SQLite;//这个可以去网上下载
using System.Configuration;

public class SQLiteHelper
{
    //数据库连接字符串(web.config来配置),可以动态更改SQLString支持多数据库. 
    public static string connectionString = “Data Source=“ +
    System.Web.HttpContext.Current.Server.MapPath(
    ConfigurationManager.AppSettings[“SQLString“]);

    public SQLiteHelper() { }

    #region 公用方法

    public static int GetMaxID(string FieldName string TableName)
    {
        string strsql = “select max(“ + FieldName + “)+1 from “ + TableName;
     

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

     文件      20056  2009-08-24 10:33  SQLiteHelper\SQLiteHelper0.cs

     文件      15883  2009-08-24 10:02  SQLiteHelper\SQLiteHelper1.cs

     文件      13781  2009-08-24 10:06  SQLiteHelper\SQLiteHelper2.cs

     文件       5315  2009-08-24 10:00  SQLiteHelper\SQLiteHelper3.cs

     文件       7964  2009-08-24 10:07  SQLiteHelper\SQLiteHelper4.cs

     目录          0  2009-08-25 15:22  SQLiteHelper

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

                62999                    6


评论

共有 条评论