MCH
MCH

Reputation: 2214

Design your own connection to MySQL or PostgreSQL?

I am interested in creating my own connection to MySQL or PostgreSQL in Common Lisp. I know there are a few libraries that already exist for Common Lisp, but I want to have a better understanding of the respective database languages and Common Lisp by doing so myself. I searched around google and stackoverflow a bit, but did not find anything related to what I am looking for. I looked around the MySQL and PostgreSQL documentation as well, but did not find anything either. Perhaps I am not sure what I need to be looking for. Thank you!

Upvotes: 1

Views: 409

Answers (1)

Dan Grossman
Dan Grossman

Reputation: 52372

Generally the language in which clients and servers communicate is called a protocol. Search "mysql protocol" or "postgres protocol" for the specification you need to implement.

http://dev.mysql.com/doc/internals/en/client-server-protocol.html

http://developer.postgresql.org/pgdocs/postgres/protocol.html

Upvotes: 2

Related Questions