
SQLite
CLeopard
愿在充满热血的团队与有志青年共创未来。
展开
-
查询.db(SQLite数据库文件)中所有表
//查询.db库中所有的表用以下的sql语句 string tablenames = "select name from sqlite_master where type='table' order by name;"; try { System.Data.DataSet ds = DBUtil原创 2014-10-28 22:35:31 · 4704 阅读 · 0 评论 -
SQLite通用数据库类
using System;using System.Collections;using System.Collections.Specialized;using System.Data;using System.Configuration;using System.Data.SQLite;using System.Collections.Generic;using System.Di转载 2014-10-28 22:31:42 · 2083 阅读 · 0 评论