Parameters
- len
- The size of the MySqlBlob in bytes.
MySqlDataReader pictureReader = myCommand.ExecuteReader(); pictureReader.Read(); MySqlBlob pictureBlob = pictureReader.GetMySqlBlob(pictureReader.GetOrdinal("Picture")); if (pictureBlob.Length > 100) pictureBlob.SetLength(100);
Dim pictureReader As MySqlDataReader = myCommand.ExecuteReader pictureReader.Read() Dim pictureBlob As MySqlBlob = pictureReader.GetMySqlBlob(pictureReader.GetOrdinal("Picture")) If (pictureBlob.Length > 100) Then pictureBlob.SetLength(CLng(100)) End If
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2