摘要:
//利用C#判断当前操作系统是否为Win8及以上系统 public static bool IsWindows8() { Version currentVersion = Environment.OSVersion.Version; Version compareToVersion = new Ve 阅读全文
摘要:
找到已经存在的所有表,手动判断是否需要建表 SELECT name FROM SQLITE_MASTER WHERE type='table'ORDER BY name" 建表时sqlite自动判断:create table if not exists nodetype(id integer PRI 阅读全文