Fixed quote symbols

This commit is contained in:
Sergey Kurt 2017-03-14 13:46:35 +03:00
parent b3c4580efa
commit 454a3a816a

View file

@ -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
}