我想在数据库中存储大量内容,当我尝试执行此查询时,我的示例文本长度为 16129 个字符,它在 Firefox 中显示“错误:无法检索请求的 URL”,在 chrome 中显示“未收到数据”。
此外,我LONGTEXT
用作数据库中文本的数据类型。
我还尝试直接在 phpmyadmin 中执行查询,它工作正常。
代码如下所示。
public function _getConnection($type = 'core_write') {
return Mage::getSingleton('core/resource')->getConnection($type);
}
public function testdbAction(){
$db = $this->_getConnection();
$current_time=now();
$text="The European languages are members of the same family...... ...Europe uses the same vocabulary. The ";//text is 16129 characters in length
$sql = "INSERT into test(`usercontent_id`,`app_id`,`module_id`,`customer_id`,`content`,`created_time`,`updated_time`,`item_id`,`index_id`,`position_id`) VALUES (NULL, 15, 9,2,'" .$text. "','" . $current_time . "','" . $current_time . "',1003,5,4)";
$db->query($sql);
}
我该如何处理?任何建议或帮助..