예제 #1
0
파일: postgres.go 프로젝트: pgrunde/sol
// Add the postgres dialect to the dialect registry
func init() {
	dialect.Register("postgres", &PostGres{})
}
예제 #2
0
파일: sqlite3.go 프로젝트: aodin/sol
// Add the sqlite3 dialect to the dialect registry
func init() {
	dialect.Register("sqlite3", Dialect())
}
예제 #3
0
파일: mysql.go 프로젝트: aodin/sol
// Add the MySQL dialect to the dialect registry
func init() {
	dialect.Register("mysql", Dialect())
}
예제 #4
0
파일: sqlite3.go 프로젝트: pgrunde/sol
// Add the sqlite3 dialect to the dialect registry
func init() {
	dialect.Register("sqlite3", &Sqlite3{})
}
예제 #5
0
파일: postgres.go 프로젝트: aodin/sol
// Add the postgres dialect to the dialect registry
func init() {
	dialect.Register("postgres", Dialect())
}