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

◆ QuotePrefix

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

Definition at line 367 of file DbCommandBuilder.cs.

368 {
369 get
370 {
371 return _quotePrefix ?? string.Empty;
372 }
373 [param: AllowNull]
374 set
375 {
376 if (_dbSchemaTable != null)
377 {
378 throw ADP.NoQuoteChange();
379 }
381 }
382 }

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