diff --git a/en/05.2.md b/en/05.2.md index 31a62247..dc938f97 100644 --- a/en/05.2.md +++ b/en/05.2.md @@ -8,7 +8,6 @@ There are a couple of drivers that support MySQL in Go. Some of them implement t - [https://github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) supports `database/sql`, written in pure Go. - [https://github.com/ziutek/mymysql](https://github.com/ziutek/mymysql) supports `database/sql` and user defined interfaces, written in pure Go. -- [https://github.com/Philio/GoMySQL](https://github.com/Philio/GoMySQL) only supports user defined interfaces, written in pure Go. I'll use the first driver in the following examples (I use this one in my personal projects too), and I also recommend that you use it for the following reasons: