views:

74

answers:

1

I have to use erlang-mysql-driver in my application, but it has been distressingly unreliable. Since it isn't being maintained, I don't see any option but to fix it myself. The problem is, I've never written nor worked on a database driver, and I don't know where to start. Mainly, I can't find the relevant documentation that specifies how a mysql driver should operate. Can anyone provide a pointer?

+1  A: 

Perhaps the MySQL Internals ClientServer Protocol in MySQL Internals?

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

molecules
That's what I was looking for, thanks.
mwt