Class PostgresQuoter
Inheritance
PostgresQuoter
Assembly: FluentMigrator.Runner.Postgres.dll
Syntax
public class PostgresQuoter : GenericQuoter, IQuoter
Constructors
|
Edit this page
View Source
PostgresQuoter(PostgresOptions)
Declaration
public PostgresQuoter(PostgresOptions options)
Parameters
Properties
|
Edit this page
View Source
Options
Declaration
public PostgresOptions Options { get; }
Property Value
Methods
|
Edit this page
View Source
FormatBool(bool)
Declaration
public override string FormatBool(bool value)
Parameters
Type |
Name |
Description |
bool |
value |
|
Returns
Overrides
|
Edit this page
View Source
FormatByteArray(byte[])
Declaration
protected override string FormatByteArray(byte[] array)
Parameters
Type |
Name |
Description |
byte[] |
array |
|
Returns
Overrides
|
Edit this page
View Source
FormatSystemMethods(SystemMethods)
Declaration
public override string FormatSystemMethods(SystemMethods value)
Parameters
Returns
Overrides
|
Edit this page
View Source
QuoteSchemaName(string)
Declaration
public override string QuoteSchemaName(string schemaName)
Parameters
Type |
Name |
Description |
string |
schemaName |
The schema name to quote
|
Returns
Type |
Description |
string |
The quoted schema name
|
Overrides
|
Edit this page
View Source
QuoteSequenceName(string, string)
Declaration
public override string QuoteSequenceName(string sequenceName, string schemaName)
Parameters
Returns
Overrides
|
Edit this page
View Source
ShouldQuote(string)
Declaration
protected override bool ShouldQuote(string name)
Parameters
Type |
Name |
Description |
string |
name |
|
Returns
Overrides
|
Edit this page
View Source
UnQuoteSchemaName(string)
Declaration
public string UnQuoteSchemaName(string quoted)
Parameters
Type |
Name |
Description |
string |
quoted |
|
Returns
Implements