C#怎样在页面建立一个按钮点击查询出数据库的数据?
2个回答
展开全部
1)连接数据库
2)查询数据
3)操作返回来的结果集
例子:
string str = "data source=PAN-PC;uid=sa;pwd=123456;database=HOTEL";//sql连接语句
SqlConnection conn = new SqlConnection(str);
try
{
SqlCommand com = new SqlCommand();
com.Connection = conn;
com.CommandText = "select * from information";//SQL查询语句。
if (conn.State == ConnectionState.Closed)
{
conn.Open();//打开数据库的一条通道
}
SqlDataReader result = com.ExecuteReader();//建立一个DataReader 对象根据查询出来的数据,返回给这个对象。
while (result.Read())
{
if (textBox1.Text == result[0].ToString() && textBox2.Text == result[1].ToString())
{
MessageBox.Show("日,悲剧,终于成功了");
}
}
//result[0] 相当于你的数据库的第一个列 。也可以result["id"]
2)查询数据
3)操作返回来的结果集
例子:
string str = "data source=PAN-PC;uid=sa;pwd=123456;database=HOTEL";//sql连接语句
SqlConnection conn = new SqlConnection(str);
try
{
SqlCommand com = new SqlCommand();
com.Connection = conn;
com.CommandText = "select * from information";//SQL查询语句。
if (conn.State == ConnectionState.Closed)
{
conn.Open();//打开数据库的一条通道
}
SqlDataReader result = com.ExecuteReader();//建立一个DataReader 对象根据查询出来的数据,返回给这个对象。
while (result.Read())
{
if (textBox1.Text == result[0].ToString() && textBox2.Text == result[1].ToString())
{
MessageBox.Show("日,悲剧,终于成功了");
}
}
//result[0] 相当于你的数据库的第一个列 。也可以result["id"]
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询