ORA-00933: SQL command not properly ended -

后端 未结 1 433
太阳男子
太阳男子 2021-01-28 11:06
 public void updateweeks(string getdate)
{
    string result = getdate.Substring(0, 10);
    OracleConnection con;
    OracleCommand cmd;
    con = new OracleConnection(         


        
相关标签:
1条回答
  • 2021-01-28 11:32

    Remove semi-colon at the end of the cmd.CommandText, here:

    M/YY');";
          ^
          |
         here
    
    0 讨论(0)
提交回复
热议问题