Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DbCommandBuilder::QuoteSuffix Property

 

Gets or sets the ending character or characters to use when specifying database objects (for example, tables or columns) whose names contain characters such as spaces or reserved tokens.

Namespace:   System.Data.Common
Assembly:  System.Data (in System.Data.dll)

public:
property String^ QuoteSuffix {
	virtual String^ get();
	virtual void set(String^ value);
}

Property Value

Type: System::String^

The ending character or characters to use. The default is an empty string.

Some data sources may have objects that can contain characters such as spaces, commas, and semicolons. To accommodate this capability, use the QuotePrefix and QuoteSuffix properties to specify delimiters such as a left bracket and a right bracket to encapsulate the object name.

System_CAPS_noteNote

Although you cannot change the QuotePrefix or QuoteSuffix properties after an insert, update, or delete command has been generated, you can change their settings after calling the Update method of a DbDataAdapter.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft