UseOldSyntax Property

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
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.8.4.0

Syntax

C#
[ObsoleteAttribute("Use Old Syntax is no longer needed.  See documentation")]
public bool UseOldSyntax { get; set; }
Visual Basic
<ObsoleteAttribute("Use Old Syntax is no longer needed.  See documentation")> _
Public Property UseOldSyntax As Boolean
	Get
	Set
Visual C++
public:
[ObsoleteAttribute(L"Use Old Syntax is no longer needed.  See documentation")]
property bool UseOldSyntax {
	bool get ();
	void set (bool value);
}

See Also