1 Star 0 Fork 0

lynkdb / mysqlgo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
connector.go 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
// Copyright 2014 Eryx <evorui аt gmаil dοt cοm>, All rights reserved.
//
// 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// 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.
package mysqlgo
import (
"database/sql"
"errors"
"fmt"
_ "github.com/go-sql-driver/mysql"
"github.com/lynkdb/iomix/connect"
"github.com/lynkdb/iomix/rdb"
)
func NewConnector(cfg connect.ConnOptions) (rdb.Connector, error) {
dsn := ""
if cfg.Value("host") != "" {
dsn = fmt.Sprintf(
`%s:%s@tcp(%s:%s)/%s`,
cfg.Value("user"), cfg.Value("pass"),
cfg.Value("host"), cfg.Value("port"), cfg.Value("dbname"),
)
} else if cfg.Value("socket") != "" {
dsn = fmt.Sprintf(
`%s:%s@unix(%s)/%s?charset=%s`,
cfg.Value("user"), cfg.Value("pass"),
cfg.Value("socket"), cfg.Value("dbname"), cfg.Value("charset"),
)
} else {
return nil, errors.New("Incorrect configuration")
}
db, err := sql.Open("mysql", dsn)
if err != nil {
return nil, err
}
base, err := rdb.NewBase(cfg, db)
if err != nil {
return nil, err
}
base.QuoteStr = dialectQuoteStr
for k, v := range dialectStmts {
base.StmtSet(k, v)
}
return &Dialect{
Base: *base,
dbName: cfg.Value("dbname"),
}, nil
}
1
https://gitee.com/lynkdb/mysqlgo.git
git@gitee.com:lynkdb/mysqlgo.git
lynkdb
mysqlgo
mysqlgo
master

搜索帮助