MySqlConnectionStringBuilder.UseOldSyntax Property

MySQL Connector/Net

MySqlConnectionStringBuilderUseOldSyntax Property

Note: This API is now obsolete.

Gets or sets a boolean value that indicates whether this connection uses the old style (@) parameter markers or the new (?) style.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
[ObsoleteAttribute("Use Old Syntax is no longer needed.  See documentation")]
public bool UseOldSyntax { get; set; }
<ObsoleteAttribute("Use Old Syntax is no longer needed.  See documentation")>
Public Property UseOldSyntax As Boolean
	Get
	Set
public:
[ObsoleteAttribute(L"Use Old Syntax is no longer needed.  See documentation")]
property bool UseOldSyntax {
	bool get ();
	void set (bool value);
}
[<ObsoleteAttribute("Use Old Syntax is no longer needed.  See documentation")>]
member UseOldSyntax : bool with get, set

Property Value

Type: Boolean
See Also