discovered by @cxzlw **Describe the bug** - sqlite的表名是不区分大小写的。table和tAble是一样的。 - MSQL中检查一个表是否存在,是先把表明读取出来,然后使用`x in list`来判断的。in区分大小写。 **How To Reproduce?** **Expected behavior** <!-- A clear and concise description of what you expected to happen. --> **Additional context** <!-- Anything else to say? --> 解决方式: 将表名全部转换为小写再处理
discovered by @cxzlw
Describe the bug
x in list来判断的。in区分大小写。How To Reproduce?
Expected behavior
Additional context
解决方式:
将表名全部转换为小写再处理