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 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog