尝试在数据库中插入记录时SQL查询错误

时间:2012-10-26 10:58:24

标签: php mysql sql file-upload

嘿伙计我有一个很大的问题,我不明白为什么.. 我有几个表单将文件上传到数据库,所有这些表单都可以正常工作,除了一个..我在所有(简单插入)中使用相同的查询。我认为它与我试图上传的文件有关,但我不确定。

以下是代码:

if ($_POST['action'] == 'hndlDocs') {
$ref = $_POST['reference']; // Numeric value of
$doc = file_get_contents($_FILES['doc']['tmp_name']);


$link = mysqli_connect('localhost','XXXXX','XXXXX','documents');
mysqli_query($link,"SET autocommit = 0");

$query = "INSERT INTO documents ({$ref},
'{$doc}',
'{$_FILES['doc']['type']}')
;";
mysqli_query($link,$query);
if (mysqli_error($link)) {
    var_dump(mysqli_error($link));
    mysqli_rollback($link);
} else {
    print("<script> window.history.back(); </script>");
    mysqli_commit($link);
}

}

数据库只有以下字段:

DATABASE documents (
    reference INT(5) NOT NULL, //it is unsigned zerofill
    doc LONGBLOB NOT NULL, //this should contain the binary data
    mime_type TEXT NOT NULL // the mime type of the file php allows only application/pdf and image/jpeg
);

我得到的错误是:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '00001, '����' at line 1

更新:

除了我忘记在SQL查询中添加VALUE。 我必须将addslashes()添加到从文件中收集的内容中,并且全部完成。

我将感激你的每一个帮助。 干杯!

1 个答案:

答案 0 :(得分:2)

您忘记添加VALUES关键字。您使用的INSERT语法类型是隐式的。因此,假设您的表只有3列,因为您只提供了3个值。但是,如果您有超过3列,则需要在查询中明确定义列名称。

$query = "INSERT INTO documents VALUES ({$ref}, 
                                       '{$doc}', 
                                       '{$_FILES['doc']['type']}');";

您的查询容易被SQL Injection攻击。请花点时间阅读以下文章