摘要:
修改DBType,增加OleDb。enum DBType{ OleDb, SqlServer, SqlServerCE, MySql, PostgreSQL, Oracle, SQLite}修改CommonConstruct,增加if (dbtype.StartsWith("OleDb")) _dbType = DBType.OleDb;private void CommonConstruct(){ if (dbtype.StartsWith("OleDb")) _dbType = DBType.OleDb; else if (dbtype... 阅读全文
2012年11月2日 #