2012年12月20日

DataGridView转datatable

摘要: /// <summary> /// datagridview转datatable /// </summary> /// <param name="dv"></param> /// <returns></returns> public static DataTable dvtodt(DataGridView dv) { DataTable dt = new DataTable(); DataColumn dc; for (int i = 0; i < dv.Columns.Count; i++) { 阅读全文

posted @ 2012-12-20 12:50 疯狂的石头陈 阅读(374) 评论(0) 推荐(0)

PowerBuilder9.0与SQLsever2005的连接问题

摘要: 昨天在自己机子上安了PowerBuilder,但是在建立数据库连接的时候却老是会出现如下的提示:Unable to load the requested Database interface.Please make sureboth the interface and client software are properlyinstall 因为昨天要写的东西不连数据库也能解决,所以这问题就先放那了,今天回来的时候在网上小查了一下,还好是个比较常见了问题,有很多人问,当然也有很多种答案,整理了一下,自己也试了一下,终于顺利的解决啦!下面把解决方面贴在这儿,以免以后再遇到的时候忘了.下载ntwdb 阅读全文

posted @ 2012-12-20 10:49 疯狂的石头陈 阅读(1142) 评论(0) 推荐(0)

导航