且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在MySQL数据库中插入文件?

更新时间:2023-01-30 17:32:15

BLOB数据类型最适合存储文件。




I want to insert a file in MYSQL database residing on a remote webserver using a webservice.

My question is: What type of table column (e.g. varchar, etc.) will store a file? And will the insert statement be somewhat different in case of a file?

The BLOB datatype is best for storing files.