Creates single SQL qualified name from identifier and adds it to the end of the list with the specified case sensitivity flag.
'Declaration
Public Overloads Function AddIdentifier( _
ByVal As System.String, _
ByVal As System.Boolean _
) As System.Integer
'Usage
Dim instance As SQLQualifiedNameList
Dim name As System.String
Dim caseSensitive As System.Boolean
Dim value As System.Integer
value = instance.AddIdentifier(name, caseSensitive)
public System.int AddIdentifier(
System.string ,
System.bool
)
public: System.int AddIdentifier(
System.string* ,
System.bool
)
Parameters
- name
- Identifier string to be added as a single SQL qualified name to the list.
- caseSensitive
- Flag to override identifier case sensitivity option of the syntax provider (IdentCaseSens) specified in the SQL context.
Return Value
Returns index of the newly added SQL qualified name in the list.