我们在进行数据库插入或更新操作的时候,有时我们需要知道当前插入行的数据库表的主键值, 那么如何获得呢?下面的代码将实现获得插入数据时的主键值:
// 在数据表里创建一个新行,并把当前属性的值插入对应的列中 public int Create() { //建立数据库连接 SqlConnection connection = new SqlConnection(_Connectionstring); connection.open();//打开数据库连接 //建立数据库连接对象 SqlCommand command = new SqlCommand("insert into Customers " +"(LastName,FirstName,Address,City,State,Zip,Phone," +"SignUpDate) values (@LastName,@FirstName,@Address," +"@City,@Zip,@Phone,@SignUpDate)",connection); //将要插入的数据加入数据库中 command.Parameters.AddWithValue("@LastName",_LastName); command.Parameters.AddWithValue("@FirstName",_FirstName); command.Parameters.AddWithValue("@Address",_Address); command.Parameters.AddWithValue("@City",_City); command.Parameters.AddWithValue("@Zip",_Zip); command.Parameters.AddWithValue("@Phone",_Phone); command.Parameters.AddWithValue("@SingUpDate",_SingUpDate); command.ExecuteNonQuery();//执行连接语句 command.Parameters.Clear(); command.CommandText = "select @@IDENTITY"; //查找主键 int newCustomerID = Convert.ToInt32(command.ExecuteScalar()); connection.Close();//关闭连接 _CustomerID = newCustomerID; return newCustomerID; }