SQLite Blob data to mySQL blob data field

Not at all
Base64 Encode the data so YOU control the “blob format” and then put the base 64 data in either SQLite’s blob column or mySQL’s
It does mean you have to decode the data when you want to show the PDF BUT you have full control over endianness and every other aspect of how a “blob” is handled
When you just use the native “blob” format of whatever database you lose that control