摘要: public class SQLiteHelper { #region 数据库的连接属性 private static SQLiteConnection scon; public static SQLiteConnection Connect { get { if (scon == null) { string con = "Data Source=e:\\logdb.db;Pooling=true;FailIfMissing=false"; scon = new SQLiteConnection(con); } else if (scon.State == Connect 阅读全文
posted @ 2011-09-05 10:07 用心玲听 阅读(549) 评论(0) 推荐(0) 编辑