Någon som kan hjälpa mig med typblandningsfel, jag får följande fel: Sorry, jag tog bort mitt inlägg. Såg att det inte skule funka vad använder du för kontroll för att hämta datan ur?Typlandnings fel vid insert into
Exception Details: System.Data.OleDb.OleDbException: Typblandningsfel i villkorsuttryck.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[OleDbException (0x80040e07): Typblandningsfel i villkorsuttryck.]
System.Data.OleDb.OleDbCommand.ExecuteCommandTextErrorHandling(Int32 hr) +41
System.Data.OleDb.OleDbCommand.ExecuteCommandTextForSingleResult(tagDBPARAMS dbParams, Object& executeResult) +174
System.Data.OleDb.OleDbCommand.ExecuteCommandText(Object& executeResult) +92
System.Data.OleDb.OleDbCommand.ExecuteCommand(CommandBehavior behavior, Object& executeResult) +65
System.Data.OleDb.OleDbCommand.ExecuteReaderInternal(CommandBehavior behavior, String method) +112
System.Data.OleDb.OleDbCommand.ExecuteNonQuery() +66
bowling.MatchResultat.ExecuteNonQuery(String sql) +141
bowling.MatchResultat.btnResultatAdd(Object sender, EventArgs e) +16
System.Web.UI.WebControls.Button.OnClick(EventArgs e) +108
System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +57
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +18
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +33
System.Web.UI.Page.ProcessRequestMain() +1277
Här är Insert koden:
private void btnResultatAdd(object sender, System.EventArgs e)
{
string InsertCmd = "insert into Resultat values (@Nr," +
" @Spelare, @Omgang, @Resultat, @H_B, @Serier, @Poang," +
" @Lag)";
// Initialize the SqlCommand with the new SQL string
// and the connection information.
SqlCommand myCommand = new SqlCommand(InsertCmd, Conn);
// Create new parameters for the SqlCommand object and
// initialize them to the input-form field values.
myCommand.Parameters.Add(new SqlParameter("@Nr",
SqlDbType.Int, 11));
myCommand.Parameters["@Nr"].Value = Nr.Value;
myCommand.Parameters.Add(new SqlParameter("@Spelare",
SqlDbType.Int, 40));
myCommand.Parameters["@Spelare"].Value = Spelare.Value;
myCommand.Parameters.Add(new SqlParameter("@Omgang",
SqlDbType.Int, 20));
myCommand.Parameters["@Omgang"].Value = Omgang.Value;
myCommand.Parameters.Add(new SqlParameter("@Resultat",
SqlDbType.Int, 12));
myCommand.Parameters["@Resultat"].Value = Resultat.Value;
myCommand.Parameters.Add(new SqlParameter("@H_B",
SqlDbType.VarChar, 40));
myCommand.Parameters["@H_B"].Value = H_B.Value;
myCommand.Parameters.Add(new SqlParameter("@Serier",
SqlDbType.Int, 20));
myCommand.Parameters["@Serier"].Value = Serier.Value;
myCommand.Parameters.Add(new SqlParameter("@Lag",
SqlDbType.VarChar, 2));
myCommand.Parameters["@Lag"].Value = Lag.Value;
ExecuteNonQuery(InsertCmd);
ReadRecords();
}Sv: Typlandnings fel vid insert into
Sv: Typlandnings fel vid insert into
en textbox?
För det var asp.net du skrev i?