for example, go connection mysql, https://github.com/jmoiron/sqlx is a client that implements official database/sql, and an additional driver: https://github.com/go-sql-dri. is required to use it.
but this is not the case when I connect to mongodb. I can interact with mongo server directly using https://github.com/go-mgo/mgo. is it because mgo integrates both the driver and the client?
now it is found that mongo is officially open source: https://github.com/mongodb/mo.. It seems that it can be used directly, and there will be no separation of the driver from the client
.