Firebird ADO.NET Provider SDK Documentation - v1.7

FbCommandBuilder.QuotePrefix Property

Gets or sets the beginning 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.

[Visual Basic]
Public Property QuotePrefix As String
[C#]
public string QuotePrefix {get; set;}

Remarks

Some data sources 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 command has been generated, you can change their settings after calling the Update method of an FbDataAdapter.

Exceptions

Exception TypeCondition
InvalidOperationException This property cannot be changed after an insert, update, or delete command has been generated.

See Also

FbCommandBuilder Class | FirebirdSql.Data.Firebird Namespace