dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlCommandBuilder Class / QuoteIdentifier Method
Identifier to be placed inside the quotes.

In This Topic
QuoteIdentifier Method (MySqlCommandBuilder)
In This Topic
Returns the string passed as the parameter enclosed in quotes.
Syntax
'Declaration
 
Public Overrides Function QuoteIdentifier( _
   ByVal unquotedIdentifier As String _
) As String
 

Parameters

unquotedIdentifier
Identifier to be placed inside the quotes.

Return Value

The identifier enclosed in quotes.
Remarks
This method constructs a quoted identifier by concatenating QuotePrefix, unquotedIdentifier, and QuoteSuffix.
See Also