JPA: MySQL says table don't exist, but it exist actually

前端 未结 2 1413
滥情空心
滥情空心 2021-01-14 09:38

I have the follow script to create the table autolife.log:

CREATE TABLE `log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `idpoint` int(11) NOT NULL,
  `valu         


        
2条回答
  •  情歌与酒
    2021-01-14 09:59

    cool question. What about

    USE 
    GO
    

    clause before executing script?

    Normally all SP, tables have those 2 lines before execution

提交回复
热议问题