sqlite数据库表名长度有限制吗?

如题 目前有这个需求 问一下 网上没看到相关的耶 主要是别的数据库有这个限制 。。sqlite的话我看了下源代码 。。没发现有限制的 但是 怕自己看错 。。

表名可以足够长
I think that there is no a limit itself for the table name. But it depends on the maximum length of the SQL Statement. By default it is 1000000.

You can check it at http://www.sqlite.org/limits.html

你的表名有多长,我刚才试试了,输入长度为80的都行。

你要根据实际情况来写表名啊,也不能随意的长度,那样可读性太差了。