摘要: #region 采用ADO.NET得到网络所有数据库服务器 public static string[] GetSqlServerName() { SqlDataSourceEnumerator sqlServer = SqlDataSourceEnumerator.Instance; DataTable db = sqlServer.Ge... 阅读全文
posted @ 2008-07-06 18:11 世之云枭 阅读(197) 评论(0) 推荐(0) 编辑
摘要: #region 获取服务器里所有数据库列表 public DataTable GetMSSQLDBNameList(string DSN, string UID, string PWD) { ArrayList DBNameList = new ArrayList(); SqlConnection Connection = new SqlCo... 阅读全文
posted @ 2008-07-06 18:10 世之云枭 阅读(394) 评论(1) 推荐(0) 编辑
摘要: using System; using System.Collections; using System.Runtime.InteropServices; using System.IO; using SQLDMO; namespace ClassLibrary { /// /// SQLDMO辅助类 /// /// /// 使用前添加 "Micros... 阅读全文
posted @ 2008-07-06 11:28 世之云枭 阅读(336) 评论(1) 推荐(0) 编辑
摘要: 在前面做 MVC 流程分析的时候,我曾提到过,我更喜欢用 Velocity 来代替 WebForm。这倒不是说 WebForm 本身有什么不好,更不是某些人所说的 "性能" 原因。在实际开发中,我们所面对的页面往往很复杂,有诸多看上去很头疼的 div、style、span 什么的,我想没有几个 "程序员" 愿意去调整某些个边框布局或者颜色设置。WebForm 基于设计和封装的原因,会使用大量的 "... 阅读全文
posted @ 2008-07-06 11:06 世之云枭 阅读(497) 评论(1) 推荐(0) 编辑