Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 PHP 和 MySql 开发应用程序。我使用数据类型 longtext 来输入文本数据<textarea> (html)。我的文本总长度为 16,033 个字符,其中 longtyext (mysql) 数据类型可以接受 4,294,967,295 个字符。
<textarea> (html)
当我输入超过 10,000 个字符的文本时,我的应用程序给出数据库查询失败错误。每次成功接受少于 10,000 个字符的文本。
问题是由于数据类型的大小吗?