用vs2010编c#窗体程序时,如何使用一个相关的数据库
发布网友
发布时间:2023-06-11 22:58
我来回答
共1个回答
热心网友
时间:2024-11-24 11:10
使用控件ListView
或
dataGridView显示数据库信息以SQL为例:using
Sytem.Data.SqlClient;string
path="DataSource=.;Initial
Catalog=数据库名;UserID=用户名;Pwd=密码";SqlConnection
conn=new
SqlConnection(path);string
sql="SQL语句";SqlCommand
comm=new
SqlCommand(sql,path);try{
conn.Open();
int
num=(int)comm.ExecuteScalar();
//只是其中的一个方法,具体用何方法因sql语句不同而变化}catch(Exception
ex){
MessageBox.Show(ex.Message.ToString());}finally{
con.Close();}希望采纳,谢谢