[mysql] MySQL의 이진 데이터 [닫기]

바이너리 데이터를 MySQL에 어떻게 저장 합니까?



답변

phpguy의 대답은 정확하지만 추가 세부 정보에는 많은 혼란이 있다고 생각합니다.

기본 답변은 BLOB데이터 유형 / 속성 도메인에 있습니다. BLOB 는 이진 큰 개체 (Binary Large Object)의 약자이며 해당 열 데이터 형식은 이진 데이터를 처리하기위한 것입니다.

MySQL 관련 매뉴얼 페이지를 참조하십시오 .


답변

이와 같은 테이블의 경우 :

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>


답변

이진 데이터를 관계형 데이터베이스 저장하지 않는 것이 좋습니다 . 관계형 데이터베이스는 고정 크기 데이터로 작동하도록 설계되었습니다. 데이터베이스의 성능이 빠른 이유에 대한 Joel의 이전 기사 를 기억 하십니까? 레코드에서 다른 레코드로 이동하려면 정확히 1 포인터 씩 증가해야합니다. 정의되지 않고 매우 다양한 크기의 BLOB 데이터를 추가하면 성능이 저하됩니다.

대신 파일 시스템에 파일을 저장하고 데이터베이스에 파일 이름을 저장하십시오.


답변

무엇을 저장하고 있는지 말하지 않았으며 그렇게하는 데는 큰 이유가있을 수 있지만, 종종 대답은 ‘파일 시스템 참조로’이며 실제 데이터는 파일 시스템 어딘가에 있습니다.

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


답변

저장하려는 데이터에 따라 다릅니다. 위의 예는 LONGBLOB데이터 유형을 사용 하지만 다른 이진 데이터 형식이 있음을 알고 있어야합니다.

TINYBLOB/BLOB/MEDIUMBLOB/LONGBLOB
VARBINARY
BINARY

각각 사용 사례가 있습니다. 알려진 (짧은) 길이 (예 : 압축 된 데이터) 인 경우가 종종 BINARY있거나 VARBINARY작동합니다. 그들은 인덱스를 만들 수 있다는 이점이 있습니다.


답변

필요하지는 않지만 base64데이터 인코딩 및 디코딩을 시도 할 수 있습니다. 즉, db에는 ASCII 문자 만 있습니다. 공간과 시간이 조금 더 소요되지만 이진 데이터와 관련된 문제는 제거됩니다.


답변

권장하지 않음 -BLOB 필드가 존재하면 다음과 같이 데이터를 저장할 수 있습니다.

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

여기 에서 가져온 아이디어 .