What is the appropriate link for writing the MySql driver?

I need to use erlang-mysql-driver in my application, but it was terribly unreliable. Since it is not supported, I see no option but to fix it myself. The problem is that I never wrote or worked on a database driver, and I don't know where to start. Basically, I cannot find the relevant documentation that indicates how the mysql driver should work. Can anyone point to a pointer?

+6
mysql erlang documentation driver
source share
1 answer

Perhaps MySQL Internals ClientServer Protocol in MySQL Internals ?

Or instead of writing your own driver using Erlang ODBC with the MySQL ODBC Connector ?

+1
source share

All Articles