摘要:
ADO.NET常用的核心对象:Connection:建立与数据库的连接。SqlConnection conn(连接对象名) = new SqlConnection(连接字符串);Command:对数据源执行命令(负责执行Sql语句)。SqlCommand 命令对象名 = new SqlCommand(sql语句,Connection对象);命令对象名.ExecuteNonQuery();多条数据()命令对象.ExecuteScalar(); 一条数据DataReader:从数据源中读取数据流(读取数据)。SqlDataReader 读取器对象名 = 命令对象.command.ExecuteRe 阅读全文