How to store .txt files MySQL database?

前端 未结 4 2062
清歌不尽
清歌不尽 2021-01-02 18:36

Can I store data files (e.g. txt files) to the MySql server? If I can, how to store them?

4条回答
  •  旧巷少年郎
    2021-01-02 19:28

    How much text are we talking about here? If there's not that much text, you can store just the content of the file in the database.

    You can also store the file itself as a BLOB. http://dev.mysql.com/doc/refman/5.5/en/blob.html

    If you'll be dealing with many files, you'll probably be better off storing the files on your sever with the file path in the database.

提交回复
热议问题