小編給大家分享一下Golang全局sql數(shù)據(jù)庫連接的示例,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
成都創(chuàng)新互聯(lián)專業(yè)提供成都主機托管四川主機托管成都服務器托管四川服務器托管,支持按月付款!我們的承諾:貴族品質(zhì)、平民價格,機房位于中國電信/網(wǎng)通/移動機房,成都機柜租用服務有保障!Golang 如何把sql數(shù)據(jù)庫連接寫成全局的,不用每次頻繁創(chuàng)建銷毀,減少數(shù)據(jù)庫消耗與代碼復雜度。
數(shù)據(jù)庫連接通常在model層下的db.go中定義(命名自定義,也可以是database或者sql,與數(shù)據(jù)庫相關)
因為我這里是使用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)絡地址 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ù)庫連接的示例”有了一定的了解,如果想了解更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!