コード例 #1
0
ファイル: sqlite3.go プロジェクト: shyrobbiani/aspect
// Add the sqlite3 dialect to the dialect registry
func init() {
	aspect.RegisterDialect("sqlite3", &Sqlite3{})
}
コード例 #2
0
ファイル: postgres.go プロジェクト: shyrobbiani/aspect
// Add the postgres dialect to the dialect registry
func init() {
	aspect.RegisterDialect("postgres", &PostGres{})
}
コード例 #3
0
ファイル: mysql.go プロジェクト: shyrobbiani/aspect
// Add the mysql dialect to the dialect registry
func init() {
	aspect.RegisterDialect("mysql", &MySQL{})
}