当前位置:编程学习 > C#/ASP.NET >>

C# WinForm ListBox 绑定数据库代码

这是我的代码,其中monFile是表名,process是列名,在VS 2008 中运行正常

 

 

private void Form1_Load(object sender, EventArgs e)
{
string sqlString = "SELECT DISTINCT process FROM monFile";
DataSet ds = GetData(sqlString);

listBox1.Items.Add("process");
foreach (DataRow row in ds.Tables[0].Rows)
{
listBox1.Items.Add(row["process"].ToString());
}
}

DataSet GetData(String queryString)
{


using (SqlConnection conn = new SqlConnection("Data Source=SIYUAN\SQLEXPRESS; Initial Catalog=monitor; User ID=siyuan; Pwd=123456"))
{

DataSet ds = new DataSet();

try
{
// Connect to the database and run the query.
conn.Open();
SqlDataAdapter adapter = new SqlDataAdapter(queryString, conn);

// Fill the DataSet.
adapter.Fill(ds);

}
catch (Exception ex)
{

// The connection failed. Display an error message.
label1.Text = "Unable to connect to the database.";

}

return ds;
}

}

 

    
补充:软件开发 , C# ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,