SqlCeParameter
たとえば、次のSQLステートメントがあります。
mySQLCommand1.CommandText = @"
INSERT INTO clientSubjectiveComplaints (clientSubComplaintCreated)
VALUES (@ClientSubComplaintCreated)
";
成功したら、2 番目のステートメントINSERT
で使用できるように、自動生成された ID (INT 主キー) が返される必要があります。INSERT
これは可能ですSqlCe
か?例を提供できる場合はお願いします。