sql-builder/util/const.go

15 lines
229 B
Go
Raw Permalink Normal View History

2024-04-29 15:59:38 +08:00
package util
const (
SelectPlaceholder = "@s"
ConditionPlaceholder = "@c"
GroupPlaceholder = "@g"
OrderPlaceholder = "@o"
PartitionPlaceholder = "@p"
)
2024-08-05 19:44:11 +08:00
const (
DriverMysql = "mysql"
DriverOracle = "oracle"
)