Advertisement

SQLiteHelper类的应用与示例

阅读量:

1.SQLiteHelper类库设计与实现

复制代码
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Data.SQLite;
    using System.Data;
    using System.IO;
    using System.Xml;
    using System.Text.RegularExpressions;
    
    namespace DBSQLiteHelper
    {
    /// <summary>
    /// SQLiteHelper是一个类似于MS中的“SQLHelper”的实用程序类
    /// 数据访问应用程序块,遵循类似的模式。
    /// </summary>
    public class SQLiteHelper
    {
        /// <summary>
        /// Creates a new <see cref="SQLiteHelper"/> 实例。ctor被标记为private(私有),因为所有成员都是静态的。
        /// </summary>

全部评论 (0)

还没有任何评论哟~