テキストボックスから SQL データベースにデータを入力しようとしていますが、そうすると、null フィールドしか挿入されません。
ここに私のコード:
sqlCommand = new SqlCommand("INSERT INTO Department (Description, Comments, Permissions, Active, Production) VALUES (@description, @comments, @permissions, @active, @production)", sqlConnection);
sqlCommand.Parameters.Add("@description", SqlDbType.NVarChar, 50);
sqlCommand.Parameters.Add("@comments", SqlDbType.NVarChar, 50);
sqlCommand.Parameters.Add("@permissions", SqlDbType.NVarChar, 50);
sqlCommand.Parameters.Add("@active", SqlDbType.Int);
sqlCommand.Parameters.Add("@production", SqlDbType.Int);
sqlCommand.Parameters.AddWithValue("@description", txtDescription.Text);
sqlCommand.Parameters.AddWithValue("@comments", txtComments.Text);
sqlCommand.Parameters.AddWithValue("@permissions", txtPermissions.Text);
sqlCommand.Parameters.AddWithValue("@active", Convert.ToString(Convert.ToUInt32(chkActif.Checked)));
sqlCommand.Parameters.AddWithValue("@production", Convert.ToString(Convert.ToUInt32(chkProduction.Checked)));
sqlCommand.ExecuteNonQuery();