Go 05 Aug 2023Get to know the Repository Pattern in GolangIn the book Domain-Driven Design, Eric Evans explains that Danger Repository is a mechanism for encapsulating … 5 mntRead
Go 23 Jul 2023How To Integrate Golang with MySQL DatabaseIntroduction to Package DatabaseIn Golang programming, by default it has a package called database. This … 21 mntRead
Go 04 Apr 2023How to Communication Golang with MSSQL ServerDependencyMake sure you have created a project with go mod init mssql-go in the mssql-go folder and the … 14 mntRead
Go 04 Apr 2023How To Communication Golang with MongoDBDependecy NeededAdd some dependency when we used go Copy 1"go.mongodb.org/mongo-driver/bson" … 6 mntRead
Go 04 Apr 2023How To Communication Golang with Postgres DatabaseDependencyMake sure you have created a project with go mod init postgres-go in the postgres-go folder and the … 12 mntRead
Go 05 Feb 2023How to Communication Golang with MySQL DatabasePackage atau Library go Copy 1import "github.com/go-sql-driver/mysql" Project InitializationPrepare a … 10 mntRead