溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Golang全局sql數(shù)據(jù)庫連接的示例

發(fā)布時間:2020-12-24 09:42:25 來源:億速云 閱讀:321 作者:小新 欄目:編程語言

小編給大家分享一下Golang全局sql數(shù)據(jù)庫連接的示例,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

Golang 如何把sql數(shù)據(jù)庫連接寫成全局的,不用每次頻繁創(chuàng)建銷毀,減少數(shù)據(jù)庫消耗與代碼復(fù)雜度。

數(shù)據(jù)庫連接通常在model層下的db.go中定義(命名自定義,也可以是database或者sql,與數(shù)據(jù)庫相關(guān))
因為我這里是使用mongoDb所以為model/mgo.go

代碼:

package modelimport (
    "context"
    _ "fmt"
    "go.mongodb.org/mongo-driver/mongo"
    "go.mongodb.org/mongo-driver/mongo/options"
    "log"
    "time")type mgo struct {
    uri        string //數(shù)據(jù)庫網(wǎng)絡(luò)地址
    database   string //要連接的數(shù)據(jù)庫
    //collection string //要連接的集合}var (
    DB *mongo.Database)func Connect() (*mongo.Database, error) {
    var m = &mgo{
        "mongodb://localhost:27017",
        "數(shù)據(jù)庫名",
        //"數(shù)據(jù)庫表名",
    }

    ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
    defer cancel()
    client, err := mongo.Connect(ctx, options.Client().ApplyURI(m.uri))
    if err != nil {
        log.Print(err)
    }
    DB = client.Database(m.database)
    return DB, err}

然后在main.go中初始化

func main() {
  //初始化mongodb
  model.Connect()}

需要進行數(shù)據(jù)庫操作時,直接調(diào)用model中的DB即可

collection := model.DB.Collection("表名")//插入操作insertResult, err := collection.InsertOne(context.TODO(), "內(nèi)容")

mysql或者其它數(shù)據(jù)庫或者gorm框架之類的,都是同理。

看完了這篇文章,相信你對“Golang全局sql數(shù)據(jù)庫連接的示例”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI