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)
...
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