MySqlText Constructor(String,Boolean)
Initializes a new instance of the
MySqlText class, setting the
Value property to the specified string and specifying what client charset will be used.
The example shows how to create a
MySqlText with text string assignment and write its value to console. It uses UTF8 client charset.
...
MySqlText mySqlText = new MySqlText("Test string",true);
Console.WriteLine(mySqlText.Value);
...
...
Dim myTextSql As MySqlText = New MySqlText("Test string", True)
Console.WriteLine(myTextSql.Value)
...