| List: | MySQL and .NET | « Previous MessageNext Message » | |
| From: | Barry Zubel | Date: | October 28 2004 2:52pm |
| Subject: | RE: Only byte arrays can be serialized by MySqlBinary | ||
| View as plain text | |||
Ok, appears to be the conversion of the mediumtext field (NOTES in our database) from a string value. In MySqlBinary.cs, around line 61: byte[] buff = (ourValue as System.Byte[]); Looks like casting ourValue to a System.Byte[] isn't working as (I) expected. Delving further..... B.
