我有一个SQL SqlCeParameter
语句,例如:
mySQLCommand1.CommandText = @"
INSERT INTO clientSubjectiveComplaints (clientSubComplaintCreated)
VALUES (@ClientSubComplaintCreated)
";
INSERT
成功后,我需要返回自动生成的ID(INT主键),以便我可以在第二个INSERT
语句中使用它。
这可能是SqlCe
吗?如果你能提供一个例子,请。
答案 0 :(得分:7)
像这样:
using (var connection = new SqlCeConnection(Settings.Default.Database1ConnectionString))
using (var command = connection.CreateCommand())
{
connection.Open();
command.CommandText = @"
INSERT Test (Name)
VALUES (@TestName)
";
command.Parameters.AddWithValue("TestName", "SomeName");
command.ExecuteNonQuery();
command.CommandText = "SELECT @@IDENTITY";
var id = command.ExecuteScalar();
}
答案 1 :(得分:4)
ExecuteScalar("SELECT @@IDENTITY")
可以找到更多详细信息here。