1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 13:19:43 +02:00

Make store SQL Server compatible

This commit is contained in:
Harvey Kandola 2019-04-01 12:02:23 +01:00
parent 9ec858286f
commit 64403c402b
17 changed files with 112 additions and 50 deletions

View file

@ -320,3 +320,13 @@ func (p SQLServerProvider) VerfiyCharacterCollation(charset, collation string) (
func (p SQLServerProvider) ConvertTimestamp() (statement string) {
return `convert(varchar, ?, 13)`
}
// IsTrue returns "1"
func (p SQLServerProvider) IsTrue() string {
return "1"
}
// IsFalse returns "0"
func (p SQLServerProvider) IsFalse() string {
return "0"
}