I'm building an input form in a C# web app. I can submit it just fine but I get the System.Data.SqlClient.SqlException (0x80131904): String or binary data would be truncated error. I know its a length issue but Ive double checked everything but just cant seem to figure this out here.
{
// Open Connection
thisConnection.Open();
// Create INSERT statement with named parameters
nonqueryCommand.CommandText = "INSERT INTO InventoryInput (Date, Item, Qty, WStatus) VALUES (@Date, @Qty, @Item, @WStatus)";
// Add Parameters to Command Parameters collection
nonqueryCommand.Parameters.Add("@Date", System.Data.SqlDbType.DateTime);
nonqueryCommand.Parameters.Add("@Item", System.Data.SqlDbType.VarChar, 255);
nonqueryCommand.Parameters.Add("@QTY", System.Data.SqlDbType.NChar, 10);
nonqueryCommand.Parameters.Add("@WStatus", System.Data.SqlDbType.VarChar, 50);
nonqueryCommand.Parameters["@Date"].Value = TextBox1.Text;
nonqueryCommand.Parameters["@Item"].Value = DropDownList1.Text;
nonqueryCommand.Parameters["@QTY"].Value = TextBox2.Text;
nonqueryCommand.Parameters["@WStatus"].Value = DropDownList3.Text;
nonqueryCommand.ExecuteNonQuery();
}

@Qtyand@QTY. AFAIK it's case sensitive. – Andre Calil Aug 20 '12 at 12:45DropDownList1.TextandTextBox2.Text? andDropDownList3.Text? The first (TextBox1,Text) is more interesting. Personally, I think you should be doing an explicit parse first, and giving it the DateTime, not the string – Marc Gravell♦ Aug 20 '12 at 12:46