ToString Method (MySqlBlob)
public override string ToString()
'Declaration
Public Overrides Function ToString() As String
Return Value
A
System.String with the same value as the
MySqlBlob.
The example shows a code fragment that gets a MySqlBlob field from a MySqlReader and writes it to the console.
...
MySqlBlob myBlob = myReader.GetMySqlBlob(myReader.GetOrdinal("TextColumnName"));
Console.WriteLine(myBlob.ToString());
...
...
Dim Blob As MySqlBlob = myReader.GetMySqlBlob(myReader.GetOrdinal("TextColumnName"))
Console.WriteLine(myBlob.ToString())
...