巨大なコンテンツを db に保存したいのですが、このクエリを実行しようとすると、サンプル テキストの長さが 16129 文字で、firefox では「エラー: 要求された URL を取得できませんでした」、chrome では「no-data received」が表示されます。
さらにLONGTEXT
、DBのテキストのデータ型として使用します。
また、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);
}
どうすればこれを処理できますか? 提案やヘルプ..