Class MySqlQuoter
Assembly: FluentMigrator.Runner.MySql.dll
Syntax
public class MySqlQuoter : GenericQuoter, IQuoter
Properties
|
Edit this page
View Source
CloseQuote
Returns the closing quote identifier - " is the standard according to the specification
Declaration
public override string CloseQuote { get; }
Property Value
Overrides
|
Edit this page
View Source
OpenQuote
Returns the opening quote identifier - " is the standard according to the specification
Declaration
public override string OpenQuote { get; }
Property Value
Overrides
Methods
|
Edit this page
View Source
Declaration
public override string FormatSystemMethods(SystemMethods value)
Parameters
Returns
Overrides
|
Edit this page
View Source
FromTimeSpan(TimeSpan)
Declaration
public override string FromTimeSpan(TimeSpan 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
QuoteValue(object)
Quotes a value to be embedded into an SQL script/statement
Declaration
public override string QuoteValue(object value)
Parameters
Type |
Name |
Description |
object |
value |
The value to be quoted
|
Returns
Type |
Description |
string |
The quoted value
|
Overrides
Implements