cbcd945251
* preview of work so far * stylistic improvements * fix linters * remove golden tests, they may cause the system to be too rigid to changes * remove unnecessary code for golden tests * remove white space mangling in Execute * also handle output data, improve API, examples and docs * add helper methods * fix interface
16 lines
275 B
Go
16 lines
275 B
Go
package sqltemplate
|
|
|
|
// SQLite is an implementation of Dialect for the SQLite DMBS.
|
|
var SQLite = sqlite{
|
|
rowLockingClauseAll: false,
|
|
}
|
|
|
|
var _ Dialect = SQLite
|
|
|
|
type sqlite struct {
|
|
// See:
|
|
// https://www.sqlite.org/lang_keywords.html
|
|
standardIdent
|
|
rowLockingClauseAll
|
|
}
|