DB2CommandBuilder.QuoteSuffix Property
Gets or sets the ending character or characters to use when working with database objects, (for example, tables or columns), whose names contain characters such as spaces or reserved tokens.
- Namespace:
IBM.Data.DB2
- Assembly:
IBM.Data.DB2
(inIBM.Data.DB2.dll
)
Syntax
[Visual Basic]
Public Property QuoteSuffix As String
[C#]
public string QuoteSuffix {get; set;}
[C++]
public: __property String* get_QuoteSuffix();
public: __property void set_QuoteSuffix(String*);
[JScript]
public function get QuoteSuffix() : String;
public function set QuoteSuffix(String);
Property value
The ending character or characters to use. The default is an empty string.
Exceptions
Exception type | Condition |
---|---|
InvalidOperationException | This property cannot be changed after an insert, update, or delete command has been generated. |
Remarks
Some databases may contain objects whose names include characters such as spaces, commas, and semicolons. To accommodate this, use the QuotePrefix and QuoteSuffix properties to specify delimiters, such as a left and right bracket, that will encapsulate the object name.
Note: Although you cannot change
the QuotePrefix or QuoteSuffix properties
after an insert, update, or delete operation has been generated,
you can change their settings after calling the Update method
of a DB2®DataAdapter.