Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ QuoteSuffix

virtual string System.Data.Common.DbCommandBuilder.QuoteSuffix
getset

Definition at line 385 of file DbCommandBuilder.cs.

386 {
387 get
388 {
389 string quoteSuffix = _quoteSuffix;
390 if (quoteSuffix == null)
391 {
392 return string.Empty;
393 }
394 return quoteSuffix;
395 }
396 [param: AllowNull]
397 set
398 {
399 if (_dbSchemaTable != null)
400 {
401 throw ADP.NoQuoteChange();
402 }
404 }
405 }

Referenced by System.Data.Common.DbCommandBuilder.BuildInformation(), and System.Data.Common.DbCommandBuilder.QuotedColumn().