MySQL中的二进制数据

时间:2008-08-01 05:09:56

标签: mysql database binary-data data-storage

如何在MySQL中存储二进制数据?

9 个答案:

答案 0 :(得分:135)

phpguy的答案是正确的,但我认为其中的其他细节存在很多混淆。

基本答案在BLOB数据类型/属性域中。 BLOB 是二进制大对象的缩写,该列数据类型特定于处理二进制数据。

请参阅the relevant manual page for MySQL

答案 1 :(得分:56)

对于这样的表:

CREATE TABLE binary_data (
    id INT(4) NOT NULL AUTO_INCREMENT PRIMARY KEY,
    description CHAR(50),
    bin_data LONGBLOB,
    filename CHAR(50),
    filesize CHAR(50),
    filetype CHAR(50)
);

这是一个PHP示例:

<?php
    // store.php3 - by Florian Dittmer <dittmer@gmx.net>
    // Example php script to demonstrate the storing of binary files into
    // an sql database. More information can be found at http://www.phpbuilder.com/
?>

<html>
    <head><title>Store binary data into SQL Database</title></head>

    <body>
        <?php
            // Code that will be executed if the form has been submitted:

            if ($submit) {
                // Connect to the database (you may have to adjust
                // the hostname, username or password).

                mysql_connect("localhost", "root", "password");
                mysql_select_db("binary_data");

                $data = mysql_real_escape_string(fread(fopen($form_data, "r"), filesize($form_data)));

                $result = mysql_query("INSERT INTO binary_data (description, bin_data, filename, filesize, filetype) ".
                                    "VALUES ('$form_description', '$data', '$form_data_name', '$form_data_size', '$form_data_type')");

                $id= mysql_insert_id();
                print "<p>This file has the following Database ID: <b>$id</b>";

                mysql_close();
            } else {

                // else show the form to submit new data:
        ?>
        <form method="post" action="<?php echo $PHP_SELF; ?>" enctype="multipart/form-data">
            File Description:<br>
            <input type="text" name="form_description"  size="40">
            <input type="hidden" name="MAX_FILE_SIZE" value="1000000">
            <br>File to upload/store in database:<br>
            <input type="file" name="form_data"  size="40">
            <p><input type="submit" name="submit" value="submit">
        </form>

        <?php
            }
        ?>
    </body>
</html>

答案 2 :(得分:39)

我强烈建议反对在关系数据库中存储二进制数据。关系数据库旨在处理固定大小的数据;这就是他们的表现力量所在:记住Joel's old article为什么数据库如此之快?因为从记录移动到另一个记录只需要1个指针增量。如果添加未定义且大小不一的BLOB数据,则会影响性能。

相反,将文件存储在文件系统中,并将文件名存储在数据库中。

答案 3 :(得分:22)

虽然你还没有说出你要存储的内容,并且你可能有充分的理由这样做,但通常答案是“作为文件系统参考”,实际数据是在文件系统的某个地方。

http://www.onlamp.com/pub/a/onlamp/2002/07/11/MySQLtips.html

答案 4 :(得分:17)

这取决于您要存储的数据。上面的示例使用LONGBLOB数据类型,但您应该知道还有其他二进制数据格式:

TINYBLOB/BLOB/MEDIUMBLOB/LONGBLOB
VARBINARY
BINARY

每个都有自己的用例。如果它是已知(短)长度(例如打包数据),则BINARYVARBINARY通常会起作用。他们还有一个额外的好处就是可以对它们进行指数。

答案 5 :(得分:14)

虽然没有必要,但您可以尝试base64编码数据并将其解码。这意味着db将只有ascii字符。它将占用更多的空间和时间,但任何与二进制数据有关的问题都将被消除。

答案 6 :(得分:11)

如果 - not recommended - BLOB字段存在,您可以这样保存数据:

mysql_query("UPDATE table SET field=X'".bin2hex($bin_data)."' WHERE id=$id");

来自here的想法。

答案 7 :(得分:10)

还出现了如何将数据导入BLOB的问题。您可以将数据放在INSERT语句中,如PHP示例所示(尽管您应该使用mysql_real_escape_string而不是addslashes)。如果文件存在于数据库服务器上,您还可以使用MySQL的LOAD_FILE

答案 8 :(得分:10)

当我需要存储二进制数据时,我总是使用VARBINARY格式,如引言byd0nut

您可以在MySQL网站上找到文档主题 12.4.2 The BINARY and VARBINARY Types

下的文档

如果您在询问有什么优势,请查看问题why-varbinary-instead-of-varchar