1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-18 08:26:45 +02:00
woodpecker/store/datastore/sql/lookup.go

42 lines
1.2 KiB
Go
Raw Normal View History

2018-02-20 00:24:10 +02:00
// Copyright 2018 Drone.IO Inc.
2018-03-21 15:02:17 +02:00
//
2018-02-20 00:24:10 +02:00
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
2018-03-21 15:02:17 +02:00
//
2018-02-20 00:24:10 +02:00
// http://www.apache.org/licenses/LICENSE-2.0
2018-03-21 15:02:17 +02:00
//
2018-02-20 00:24:10 +02:00
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2017-03-28 10:53:06 +02:00
package sql
import (
"github.com/woodpecker-ci/woodpecker/store/datastore/sql/mysql"
"github.com/woodpecker-ci/woodpecker/store/datastore/sql/postgres"
"github.com/woodpecker-ci/woodpecker/store/datastore/sql/sqlite"
2017-03-28 10:53:06 +02:00
)
// Supported database drivers
const (
2017-03-28 11:13:13 +02:00
DriverSqlite = "sqlite3"
2017-03-28 10:53:06 +02:00
DriverMysql = "mysql"
DriverPostgres = "postgres"
)
// Lookup returns the named sql statement compatible with
// the specified database driver.
func Lookup(driver string, name string) string {
switch driver {
2017-03-28 11:13:13 +02:00
case DriverPostgres:
return postgres.Lookup(name)
2017-07-15 18:51:02 +02:00
case DriverMysql:
return mysql.Lookup(name)
2017-03-28 10:53:06 +02:00
default:
return sqlite.Lookup(name)
}
}