查询代码
查询单值
1.引用命名空间
using System.Data.SqlClient;
2.连接数据库 (服务器 用户名 密码 数据库)
string Str = "server=.;database=数据库名称;uid=sa;pwd=123";
3.创建连接对象
SqlConnection con = new SqlConnection(Str);
4.打开连接
con.Open();
5.选择功能使用SQL语句操作
string sql = string.Format(select * from 表名 where 条件);
6.创建命令对象
SqlCommand cmd = new SqlCommand(sql,con);
7.执行命令对象
//接收查询的第一个值
object jieGuo = cmd.ExecuteScalar();
//show出返回结果
MessageBox.Show(jieGuo.ToString());
8.关闭连接
con.Close();
查询多值
新控件:listView
网格线:GirdLines:True/False
编辑列-->设置列名
方法:
1.引用命名空间
using System.Data.SqlClient;
2.连接数据库 (服务器 用户名 密码 数据库)
string Str = "server=.;database=数据库名称;uid=sa;pwd=123";
3.创建连接对象
SqlConnection con = new SqlConnection(Str);
4.打开连接
con.Open();
5.选择功能使用SQL语句操作
string sql = string.Format(select * from 表名 where 条件);
6.创建命令对象
SqlCommand cmd = new SqlCommand(sql,con);
7.执行命令对象
SqlDataReader dr = sqlcom.ExecuteReader();
8.取值赋值:
while (dr.Read())
{
//清空ListView控件
this.listView1.Items.Clear();
//取值过程(引号里面写【列名】)
string id = dr["StuNo"].ToString();
string name = dr["StuName"].ToString();
string sex = dr["StuSex"].ToString();
string age = dr["StuAge"].ToString();
//赋值给ListView控件。
ListViewItem li = new ListViewItem(id);//首列
li.SubItems.Add(name);//其他列
li.SubItems.Add(sex);//其他列
li.SubItems.Add(age);//其他列
//添加到控件
this.listView1.Items.Add(li);
}
9.关闭阅读器和连接
dr.Close();
con.Close();