<bdo id='cywAn'></bdo><ul id='cywAn'></ul>
      1. <tfoot id='cywAn'></tfoot>

      2. <small id='cywAn'></small><noframes id='cywAn'>

      3. <i id='cywAn'><tr id='cywAn'><dt id='cywAn'><q id='cywAn'><span id='cywAn'><b id='cywAn'><form id='cywAn'><ins id='cywAn'></ins><ul id='cywAn'></ul><sub id='cywAn'></sub></form><legend id='cywAn'></legend><bdo id='cywAn'><pre id='cywAn'><center id='cywAn'></center></pre></bdo></b><th id='cywAn'></th></span></q></dt></tr></i><div id='cywAn'><tfoot id='cywAn'></tfoot><dl id='cywAn'><fieldset id='cywAn'></fieldset></dl></div>
      4. <legend id='cywAn'><style id='cywAn'><dir id='cywAn'><q id='cywAn'></q></dir></style></legend>

        INSERT INTO 语句的问题

        时间:2023-06-05

        <legend id='vebAM'><style id='vebAM'><dir id='vebAM'><q id='vebAM'></q></dir></style></legend>
            <tbody id='vebAM'></tbody>

          <small id='vebAM'></small><noframes id='vebAM'>

              • <bdo id='vebAM'></bdo><ul id='vebAM'></ul>

                  <tfoot id='vebAM'></tfoot>
                  <i id='vebAM'><tr id='vebAM'><dt id='vebAM'><q id='vebAM'><span id='vebAM'><b id='vebAM'><form id='vebAM'><ins id='vebAM'></ins><ul id='vebAM'></ul><sub id='vebAM'></sub></form><legend id='vebAM'></legend><bdo id='vebAM'><pre id='vebAM'><center id='vebAM'></center></pre></bdo></b><th id='vebAM'></th></span></q></dt></tr></i><div id='vebAM'><tfoot id='vebAM'></tfoot><dl id='vebAM'><fieldset id='vebAM'></fieldset></dl></div>
                1. 本文介绍了INSERT INTO 语句的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我似乎无法弄清楚为什么我不断收到 INSERT INTO 语句中的语法错误.

                  I can't seem to figure out why I keep getting a Syntax error in INSERT INTO statement.

                  代码如下.

                  static void ABSChangeEventsTable(string ControlNumber, string CurrentStatus)
                  {
                     using (var connection = new OleDbConnection(strAccessConnAbstracting))
                     using (var command = connection.CreateCommand())
                     {
                        connection.Open();               
                  
                        command.CommandText = "INSERT INTO Events (Date_Time, Details, Regarding, User, Control_Number) VALUES (@Date_Time, @Details, @Regarding, @User, @Control_Number)";
                  
                        command.Parameters.AddWithValue("@Date_Time", DateTime.Now);
                        command.Parameters.AddWithValue("@Details", "OLD:"+CurrentStatus+" NEW: Received Fax");
                        command.Parameters.AddWithValue("@Regarding", "Status Changed");
                        command.Parameters.AddWithValue("@User", "System");
                        command.Parameters.AddWithValue("@Control_Number", ControlNumber);
                  
                        try
                        {
                           command.ExecuteNonQuery();
                        }
                        catch (System.Exception ex)
                        {                   
                           throw;
                        }
                     }            
                  }
                  

                  推荐答案

                  User是保留关键字,需要用方括号括起来:

                  User is a reserved keyword, you need to wrap it in square brackets:

                  INSERT INTO Events (Date_Time, Details, Regarding, [User], Control_Number) VALUES (@Date_Time, @Details, @Regarding, @User, @Control_Number)
                  

                  我建议重命名该列以避免每次引用时都需要方括号.

                  I'd recommend renaming that column to avoid the need for square brackets every time you reference it.

                  这篇关于INSERT INTO 语句的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:c# 最后插入id 下一篇:从文本框值插入数字(十进制)数据

                  相关文章

                  最新文章

                    <bdo id='foS2B'></bdo><ul id='foS2B'></ul>
                  <legend id='foS2B'><style id='foS2B'><dir id='foS2B'><q id='foS2B'></q></dir></style></legend>
                  <i id='foS2B'><tr id='foS2B'><dt id='foS2B'><q id='foS2B'><span id='foS2B'><b id='foS2B'><form id='foS2B'><ins id='foS2B'></ins><ul id='foS2B'></ul><sub id='foS2B'></sub></form><legend id='foS2B'></legend><bdo id='foS2B'><pre id='foS2B'><center id='foS2B'></center></pre></bdo></b><th id='foS2B'></th></span></q></dt></tr></i><div id='foS2B'><tfoot id='foS2B'></tfoot><dl id='foS2B'><fieldset id='foS2B'></fieldset></dl></div>

                  <tfoot id='foS2B'></tfoot>

                      <small id='foS2B'></small><noframes id='foS2B'>