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']);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!