Correct quote symbols
This commit is contained in:
parent
2d3983b992
commit
b4c9af72e7
1 changed files with 2 additions and 2 deletions
|
@ -342,12 +342,12 @@ func (m *MSSQLDriver) TranslateColumnType(c bdb.Column) bdb.Column {
|
|||
|
||||
// RightQuote is the quoting character for the right side of the identifier
|
||||
func (m *MSSQLDriver) RightQuote() byte {
|
||||
return '`'
|
||||
return '\''
|
||||
}
|
||||
|
||||
// LeftQuote is the quoting character for the left side of the identifier
|
||||
func (m *MSSQLDriver) LeftQuote() byte {
|
||||
return '`'
|
||||
return '\''
|
||||
}
|
||||
|
||||
// IndexPlaceholders returns false to indicate MSSQL doesnt support indexed placeholders
|
||||
|
|
Loading…
Reference in a new issue