扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
// 定义数据连接的字符串,程序中使用的是Acess 2000数据库 private static string strConnect = "Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source = " + Application.StartupPath + "\\MY.MDB" ; private OleDbConnection conConnection = new OleDbConnection ( strConnect ) ; OleDbDataReader reader ; // 获得Person里面的所以数据记录 string strCommand = "SELECT * FROM Persons" ; this.conConnection.Open ( ) ; // 打开数据连接 OleDbCommand cmd = new OleDbCommand ( strCommand , conConnection ) ; reader = cmd.ExecuteReader ( ) ; file://获得数据集 |
// 初始化ListView lv = new ListView ( ) ; lv.Left = 0 ; lv.Top = 0 ; lv.Width = 700 ; lv.Height = this.ClientRectangle.Height ; lv.GridLines = true ; file://显示各个记录的分隔线 lv.FullRowSelect = true ; file://要选择就是一行 lv.View = View.Details ; file://定义列表显示的方式 lv.Scrollable = true ; file://需要时候显示滚动条 lv.MultiSelect = false ; // 不可以多行选择 lv.HeaderStyle = ColumnHeaderStyle.Nonclickable ; // 针对数据库的字段名称,建立与之适应显示表头 lv.Columns.Add ( "姓名" , 60 , HorizontalAlignment.Right ) ; lv.Columns.Add ( "住宅电话" , 100 , HorizontalAlignment.Left ) ; lv.Columns.Add ( "办公电话" , 100 , HorizontalAlignment.Left ) ; lv.Columns.Add ( "移动电话" , 100 , HorizontalAlignment.Left ) ; lv.Columns.Add ( "居住地点" , 100 , HorizontalAlignment.Left ) ; lv.Columns.Add ( "工作单位" , 100 , HorizontalAlignment.Left ) ; lv.Columns.Add ( "电子邮件" , 100 , HorizontalAlignment.Left ) ; lv.Visible = true ; |
while ( reader.Read ( ) ) { ListViewItem li = new ListViewItem ( ) ; li.SubItems.Clear ( ) ; li.SubItems[0].Text = reader["name"].ToString ( ) ; li.SubItems.Add ( reader["HomePhone"].ToString ( ) ) ; li.SubItems.Add ( reader["WorkPhone"].ToString ( ) ) ; li.SubItems.Add ( reader["MobilePhone"].ToString ( ) ) ; li.SubItems.Add ( reader["City"].ToString ( ) ) ; li.SubItems.Add ( reader["Address"].ToString ( ) ) ; li.SubItems.Add ( reader["Email"].ToString ( ) ) ; lv.Items.Add ( li ) ; } |
reader.Close ( ) ; file://关闭数据集 this.conConnection.Close ( ) ; // 关闭数据连接 |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者