摘要:
/// /// 将datatable转换为json /// /// Dt/// JSON字符串public static string Dtb2Json(DataTable dtb){JavaScriptSerializer jss = new JavaScriptSerializer();System.Collections.ArrayList dic = new System.Collections.ArrayList();foreach (DataRow dr in dtb.Rows){System.Collections.Generic.Dictionary drow = new Sy 阅读全文
摘要:
SELECT count(1) 存储过程个数FROM sys.sysobjectsWHERE type = 'P'GOSELECT count(1) 视图个数FROM sys.sysobjectsWHERE type = 'V'GOSELECT count(1) 表个数FROM sys.sysobjectsWHERE type = 'U'GO 阅读全文