完美者(wmzhe.com)网站以软件下载为基础,改版后的网站对功能性板块进行扩充,以期能够解决用户在软件使用过程中遇见的所有问题。网站新增了“软件百科”、“锦囊妙技”等频道,可以更好地对用户的软件使用全周期进行更加专业地服务。
MycView是一个小巧方便的看图浏览工具,旨在显示JPEG、GIF、DIB、BMP、PPM、TXT和SLD文件。"锦囊妙技"栏目是聚合全网软件使用的技巧或者软件使用过程中各种问题的解答类文章,栏目设立伊始,小编欢迎各路软件大神朋友们踊跃投稿,在完美者平台分享大家的独门技巧。
本站文章素材来源于网络,大部分文章作者名称佚失,为了更利于用户阅读和使用,根据需要进行了重新排版和部分改编,本站收录文章只是以帮助用户解决实际问题为目的,如有版权问题请联系小编修改或删除,谢谢合作。
软件大小:39.52 KB
已下载并上传至百度~请下载试听,满意后别忘记采纳哦~
SqlConnection thisConnection = new SqlConnection(ConfigurationManager.AppSettings["ConnectionString"].ToString()); // Open connection thisConnection.Open(); // Create command for this connection SqlCommand thisCommand = thisConnection.CreateCommand(); // Specify SQL query for this command thisCommand.CommandText = sCommandText; // Execute DataReader for specified command SqlDataReader thisReader = thisCommand.ExecuteReader(); // While there are rows to read // // View_LogDetailEntity = new List<CView_LogDetail>();//初始化集合 string sColumnName = string.Empty; while (thisReader.Read()) { CView_LogDetail myCView_LogDetail = new CView_LogDetail(); for (int i = 0; i < thisReader.FieldCount; i++) { sColumnName = thisReader.GetName(i).Trim(); } }