Conn="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+Server.MapPath("test.mdb");
strConn = new OleDbConnection(Conn);
strConn.Open();
strSQL="INSERT INTO Content(Content)Vlaues('"+txtContent+"')";
cmd=new OleDbCommand(strSQL,strConn);
cmd.ExecuteNonQuery();
cmd.Dispose();
strConn.Close();
“/test”應用程式中的伺服器錯誤。
--------------------------------------------------------------------------------
INSERT INTO 語句的語法錯誤。
說明: 執行當前 Web 請求期間,出現未處理的異常。請檢查堆疊追蹤資訊,以瞭解有關該錯誤以及代碼中導致錯誤的出處的詳細資料。
異常詳細資料: System.Data.OleDb.OleDbException: INSERT INTO 語句的語法錯誤。
源錯誤:
行 65: strSQL="INSERT INTO Content(Content)Vlaues('"+txtContent+"')";
行 66: cmd=new OleDbCommand(strSQL,strConn);
行 67: cmd.ExecuteNonQuery();
行 68: cmd.Dispose();
行 69: strConn.Close();
源檔案: c:/inetpub/wwwroot/test/webform1.aspx.cs 行: 67
堆疊追蹤:
[OleDbException (0x80040e14): INSERT INTO 語句的語法錯誤。]
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()
test.WebForm1.Button1_Click(Object sender, EventArgs e) in c:/inetpub/wwwroot/test/webform1.aspx.cs:67
System.Web.UI.WebControls.Button.OnClick(EventArgs e)
System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
System.Web.UI.Page.ProcessRequestMain() +1277
--------------------------------------------------------------------------------
版本資訊: Microsoft .NET Framework 版本:1.1.4322.573; ASP.NET 版本:1.1.4322.573