Files
grafana/pkg/services/store/entity/sqlstash/sqltemplate/dialect_sqlite.go
T
2024-06-05 15:18:33 -03:00

19 lines
337 B
Go

package sqltemplate
// SQLite is an implementation of Dialect for the SQLite DMBS.
var SQLite = sqlite{
argPlaceholderFunc: argFmtSQL92,
name: "sqlite",
}
var _ Dialect = SQLite
type sqlite struct {
// See:
// https://www.sqlite.org/lang_keywords.html
standardIdent
rowLockingClauseMap
argPlaceholderFunc
name
}