Fixed quote symbols
This commit is contained in:
parent
b3c4580efa
commit
454a3a816a
1 changed files with 3 additions and 3 deletions
|
@ -347,15 +347,15 @@ 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
|
||||
// IndexPlaceholders returns false to indicate MS SQL doesnt support indexed placeholders
|
||||
func (m *MSSQLDriver) IndexPlaceholders() bool {
|
||||
return false
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue