Excel spreadsheets can be stored as MySQL BLOB data. DBBlobEditor can help you to store Excel spreadsheets as MySQL BLOB data: Batch import excel files into MySQL BLOB Batch export MySQL BLOB to EXCEL files ... Read more
Tag Archives: Mysql
Store Word documents in MySQL BLOB
Word documents can be stored as MySQL BLOB data. DBBlobEditor can help you to store Word documents as MySQL BLOB data: Batch import Word files into MySQL BLOB Batch export MySQL BLOB to Word files ... Read more
How to Store PDF Files in MySQL BLOB Fields: A Comprehensive Guide for Developers & DBAs
PDF files are ubiquitous in modern business workflows—from invoices and contracts to reports and documentation. Storing these files directly in a MySQL database (rather than on a file system) offers unique advantages: centralized data management, seamless backup/restore workflows, and tight ... Read more
Store video files in MySQL BLOB
Video files can be stored as MySQL BLOB data. 1. Core Compatible Type & MySQL BLOB Fundamentals MySQL supports four BLOB subtypes tailored for storing binary data of different sizes, making it flexible for video storage across various formats (AVI, MP4, WMV, MOV, MPEG, FLV, etc.). For ... Read more
Store audio files in MySQL BLOB
Audio (MP3, WAV, Ogg, WMA, M4A, AAC, etc.) files can be stored as MySQL BLOB data. 1. Key Overview MySQL offers multi-level BLOB types (TINYBLOB, BLOB, MEDIUMBLOB, LONGBLOB) for storing mp3/wav/ogg audio files (up to 4 GB max with LONGBLOB). Storing audio as BLOB integrates audio data with ... Read more
Store images in MySQL BLOB
MySQL BLOB Type Features MySQL provides 4 graded BLOB types for different image sizes (all store binary data) TINYBLOB: Up to 255 bytes (ideal for small icons/thumbnails) BLOB: Up to 65,535 bytes (~64KB, for small images) MEDIUMBLOB: Up to 16,777,215 bytes (~16MB, for medium-resolution ... Read more
MySQL BLOB
In MySQL, the BLOB (Binary Large Object) data types are used to store large amounts of binary data, such as images, audio, and video files. MySQL provides four different BLOB data types, each with different maximum storage capacities: TINYBLOB: Can store up to 255 bytes of binary data. BLOB: Can ... Read more
Upsert data from CSV to MySQL table via command line on MacOS
Want to upsert data from CSV file to existing MySQL table via command line on MacOS? Using my-cmd, a Command-Line client for MySQL, you can upsert(merge) CSV/TSV/TXT data to MySQL (MariaDB, Percona) table easily and fast. Support Windows, Linux, and MacOS. Download my-cmd MacOS version ... Read more
Upsert data from CSV to MySQL table via command line on Linux
Want to upsert data from CSV file to existing MySQL table via command line on Linux (Ubuntu/RedHat/CentOS…)? Using my-cmd, a Command-Line client for MySQL, you can upsert(merge) CSV/TSV/TXT data to MySQL (MariaDB, Percona) table easily and fast. Support Windows, Linux, and ... Read more
Upsert data from CSV to MySQL table via command line on Windows
Want to upsert data from CSV file to existing MySQL table via command line on Windows? Using my-cmd, a Command-Line client for MySQL, you can upsert(merge) CSV/TSV/TXT data to MySQL (MariaDB, Percona) table easily and fast. Support Windows, Linux, and MacOS. Download my-cmd Windows version ... Read more