《Go語言支援哪些資料庫? 》
Go 語言作為一種簡潔而強大的程式語言,擁有豐富的資料庫支援。在 Go 語言中,開發者可以使用各種不同類型的資料庫,包括關聯式資料庫、NoSQL 資料庫以及記憶體資料庫等。本文將介紹 Go 語言支援的一些常見資料庫,並提供一些具體的程式碼範例。
一、MySQL
MySQL 是一種常見的關聯式資料庫,廣泛用於 Web 開發。在 Go 語言中,我們可以透過第三方函式庫來連接 MySQL 資料庫,並執行 SQL 查詢。以下是一個簡單的範例程式碼:
package main import ( "database/sql" "fmt" _ "github.com/go-sql-driver/mysql" ) func main() { db, err := sql.Open("mysql", "username:password@tcp(127.0.0.1:3306)/database_name") if err != nil { panic(err.Error()) } defer db.Close() // 查询数据 rows, err := db.Query("SELECT * FROM users") if err != nil { panic(err.Error()) } defer rows.Close() // 遍历结果集 for rows.Next() { var id int var name string err = rows.Scan(&id, &name) if err != nil { panic(err.Error()) } fmt.Printf("ID: %d, Name: %s ", id, name) } }
二、MongoDB
MongoDB 是一種流行的 NoSQL 資料庫,適用於處理大量非結構化資料。在 Go 語言中,可以使用官方提供的 MongoDB 驅動程式來連接和操作 MongoDB 資料庫。以下是一個簡單的範例程式碼:
package main import ( "context" "fmt" "go.mongodb.org/mongo-driver/mongo" "go.mongodb.org/mongo-driver/mongo/options" ) func main() { clientOptions := options.Client().ApplyURI("mongodb://localhost:27017") client, err := mongo.Connect(context.Background(), clientOptions) if err != nil { panic(err.Error()) } defer client.Disconnect(context.Background()) collection := client.Database("test").Collection("users") // 插入数据 _, err = collection.InsertOne(context.Background(), bson.D{ {"name", "Alice"}, {"age", 30}, }) if err != nil { panic(err.Error()) } // 查询数据 cursor, err := collection.Find(context.Background(), bson.D{}) if err != nil { panic(err.Error()) } defer cursor.Close(context.Background()) for cursor.Next(context.Background()) { var result bson.M err := cursor.Decode(&result) if err != nil { panic(err.Error()) } fmt.Println(result) } }
以上是關於 Go 語言中連接 MySQL 和 MongoDB 資料庫的簡單範例程式碼。除此之外,Go 語言也支援諸如 Redis、SQLite、PostgreSQL 等資料庫,開發者可以根據自身需求選擇合適的資料庫進行開發。透過這些資料庫支持,開發者可以輕鬆地建立各種類型的應用程序,滿足不同的業務需求。
以上是Go語言支援哪些資料庫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!