Syed Hasan·Jan 23, 2022Upgrading mysql from version 5.6 to 8.0Recently we upgraded our mysql databases from version 5.6 to 8.0. It was a great learning experience so i wanted to share all the…
Syed Hasan·Dec 24, 2021Using SQL to generate SQLRecently i was working on converting all the tables in my database from latin1 to utf8mb4. This work required me to write a lot of SQL…A response icon1A response icon1
Syed Hasan·Jun 7, 2021Understanding Defer keyword in Go-LangLets try to understand the defer keyword in go-lang. The defer keyword postpones the execution of a function until the surrounding…
Syed Hasan·May 16, 2021Custom SQL Query Builder in GoI was recently trying to build a custom query builder using go-lang. what i wanted to make achieve is a generic query builder to which we…