Bug #783 | ADO can't access BLOB field after upgrading to mySQL 4.1.0 | ||
---|---|---|---|
Submitted: | 2 Jul 2003 10:15 | Modified: | 28 Jul 2003 5:35 |
Reporter: | Stephan Goemans | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server | Severity: | S2 (Serious) |
Version: | 4.1.0 | OS: | Windows (Windows XP) |
Assigned to: | Sergei Golubchik | CPU Architecture: | Any |
[2 Jul 2003 10:15]
Stephan Goemans
[3 Jul 2003 1:23]
Stephan Goemans
Please change all references of "cnKirch" in the code to "cnConn".
[7 Jul 2003 10:04]
MySQL Verification Team
The problem here seems the same as reported in the bug #701: the mediumblob column is showed on 4.1 as mediumtext: c:\mysql\bin>mysql test Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 to server version: 3.23.57-max-nt-log Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> desc modul30\G *************************** 1. row *************************** Field: M3ID Type: int(11) unsigned Null: Key: PRI Default: 0 Extra: *************************** 2. row *************************** Field: M3BILD Type: mediumblob Null: YES Key: Default: NULL Extra: 2 rows in set (0.08 sec) c:\mysql\bin>mysql test Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 to server version: 4.1.0-alpha-max-nt-log Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> desc modul30\G *************************** 1. row *************************** Field: M3ID Type: int(11) unsigned Collation: binary Null: Key: PRI Default: 0 Extra: *************************** 2. row *************************** Field: M3BILD Type: mediumtext character set latin1 Collation: latin1_swedish_ci Null: YES Key: Default: NULL Extra: 2 rows in set (0.00 sec)
[28 Jul 2003 5:35]
Sergei Golubchik
The bug with BLOBs silently converted to TEXT is fixed. Please test 4.1.1 release (when it will be out) to be sure your ADO problem was indeed caused by this bug.