dongyan2267 2014-06-26 10:28
浏览 151
已采纳

MySQL插入和更新查询在插入大数据时出错

table structure:

id int(11)

bcontent longtext

when i run insert query through php if the data which is going to store in bcontent is small (2-3 lines paragraph) then that query runs successfully but when the size of that data is increases (10-11 lines paragraph) that query gives an error. is there problem with longtext data type? i also tried longblob but no change.

php code:

include("conn.php");
$bcontent = $_POST['bcontent'];
$query = mysql_query("insert into blocks (bcontent) values ('$bcontent')");
if($query)
{
//Success message 
}
else
{
//Error message
}

when the size of bcontent is large php throws //Error message.

i also increase the size of post_max_size to 200M in php.ini but no change.

Error:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use

actually it gives me an output which i coded in else condition

is there any error is my query or in table structure? please help me.

  • 写回答

1条回答 默认 最新

  • doufenyu7610 2014-06-26 10:31
    关注

    Your content probably contains quote characters, which you need to escape.

    $bcontent = mysql_real_escape_string($_POST['bcontent']);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 网络科学导论,网络控制
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)