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个。

猜你喜欢

转载自blog.csdn.net/wzs535131/article/details/83415807
bug