实现方法1:用绑定数据源的方法
using System.Data;
using System.Data.SqlClient;
..................
//建立连接,连接字符串的内容要视具体情况而定,这里只给出连接到本机的范例
SqlConnection con=new SqlConnection("server=(local);database=department;uid=sa;pwd=");
con.Open( );
SqlCommand cm=new SqlCommand("select empID,empName from emp",con);
SqlDataReader dr=cm.ExecuteReader( );
//绑定
this.lbxEmp.DataSource=dr; //lbxEmp为ListBox对象
this.lbxEmp.DataTextField="empName";
this.lbxEmp.DataValueField="empID";
this.lbxEmp.DataBind( );
dr.Close( );
con.Close( );
实现方法2:使用集合添加
using System.Data;
using System.Data.SqlClient;
..................
//建立连接,连接字符串的内容要视具体情况而定,这里只给出连接到本机的范例
SqlConnection con=new SqlConnection("server=(local);database=department;uid=sa;pwd=");
con.Open( );
SqlCommand cm=new SqlCommand("select empID,empName from emp",con);
SqlDataReader dr=cm.ExecuteReader( );
while(dr.Read( ))
{
this.lbxEmp.Items.add(new listItem(dr.GetString(1),dr.GetInt32(0).ToString( )));
}
d