MySQL Table does not exist error, but it does exist

后端 未结 10 1187
臣服心动
臣服心动 2020-12-03 07:32

Does anyone know under what conditions you can receive an 1146: Table \'.

\' doesn\'t exist error when your table does, in fact, exi
10条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-03 07:54

    I had this kind of behaviour once. Later on I discovered that the JDBC driver I used changed my query to lower case, so I couldn't reach my database (which used mixed case letters) with it, although my code was using the correct mixed letters.

提交回复
热议问题