ADO.NET基本的就是这些了:
using (SqlConnection connection = new SqlConnection("连接字符串"))
{
connection.Open();//查询前打开连接
using (SqlCommand command = new SqlCommand("语句", connection))//1
{
command.ExecuteNonQuery();//增删改
command.ExecuteScalar();//查询第一行第一列(第一个结果)
using (SqlDataReader reader = command.ExecuteReader())//每次返回一行的读取方式
{
while (reader.Read())
{
string textValue = reader.IsDBNull(0) ? "" : reader.GetString(0);
}
}
}
using (SqlDataAdapter adapter = new SqlDataAdapter("查询的语句", connection))//2
{
DataSet ds = new DataSet();
adapter.Fill(ds);
}
}
还可以用EntityFramework,这个直接新建,数据,entityFramework就可以,一步一步操作就行了。
连接字符串可以这样取,菜单》工具》连接到数据库,输入各种参数,选择完数据库之后,点高级,在新打开的窗口下面可以复制连接字符串了。
ADO.NET连接数据库,
Connection 类
气死我
用ado.net啊