1. 程式人生 > >bug(2018.10.26)

bug(2018.10.26)

1.Ambiguous handler methods mapped for HTTP path

出現了兩個名稱一樣的對映

2.[Err] 1054 - Unknown column '管理員' in 'field list'

錯誤:update table set CURRENT_HANDLER=管理員 where 1=1 and TICKET_ID=4

有可能是sql語句的語法錯誤,如:管理員前沒有空格,或者管理員這幾個漢字沒有加’’

正確語句:update tt_ticket set CURRENT_HANDLER='用友管理員' where 1=1 and TICKET_ID=4

3.Parameter index out of range (2 > number of parameters, which is 1).

   Sql中只有一個?號佔位符,但是引數卻傳了2個。