私は使用しています:
string insertQ = "insert into Customer(Name, CNIC, Address, Balance) values(@name, @cnic, @address, @balance); SELECT CAST(scope_identity() AS int);";
SqlCommand insertCmd1 = new SqlCommand(insertQ, con);
Int32 newId = (Int32)insertCmd1.ExecuteScalar();
しかし
「スカラー変数を宣言する必要があります」
例外が来ていExecuteScalar
ます。
解決方法を教えてください...