Ich habs grad mal ausprobiert (ne tabelle mit einem BLOB Feld und einen Datensatz mit nem pdf reingeladen) und das BLOB-Feld kommt hexadezimal in die
SQL Datei - sieht dann so aus:
SQL-Code:
-- phpMyAdmin SQL Dump
-- version 2.11.9.1
-- [url]http://www.phpmyadmin.net[/url]
--
-- Host: localhost
-- Erstellungszeit: 04. September 2009 um 23:03
-- Server Version: 4.0.24
-- PHP-Version: 4.4.9
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES latin1 */;
--
-- Tabellenstruktur für Tabelle `test`
--
CREATE TABLE IF NOT EXISTS `test` (
`id`
int(11)
NOT NULL auto_increment,
`text`
text NOT NULL,
`bmp` blob
NOT NULL,
PRIMARY KEY (`id`)
) TYPE=InnoDB AUTO_INCREMENT=2 ;
--
-- Daten für Tabelle `test`
--
INSERT INTO `test` (`id`, `text`, `bmp`)
VALUES
(1, '
meinpdf', 0x255044462d312e.....etc...pp...usw....a7374617274787265660a31323531310a2525454f460d0a);