摘要: 写一个小程序,将数据库中的两张表相关信息显示在DataGridView中。代码如下: //获取项目数据,添加到表中 SqlConnection con = new SqlConnection(MainForm2.connection); con.Open(); string cmd1 = string.Format(@"Select * from ProjectInfo where ProjectName='{0}'", pjnm); string cmd2 = string.Format(@"Select... 阅读全文
posted @ 2013-11-05 16:33 DayDreamInGIS 阅读(1316) 评论(0) 推荐(0) 编辑