设计自己的MySQL或PostgreSQL连接?

时间:2011-02-26 08:00:49

标签: mysql postgresql lisp connection

我有兴趣在Common Lisp中创建自己与MySQL或PostgreSQL的连接。我知道Common Lisp已经存在一些库,但是我想通过自己的方式更好地理解各自的数据库语言和Common Lisp。我搜索了谷歌和stackoverflow一点,但没有找到任何与我正在寻找的相关。我也查看了MySQL和PostgreSQL文档,但也找不到任何东西。也许我不确定我需要寻找什么。谢谢!

1 个答案:

答案 0 :(得分:2)

通常,客户端和服务器通信的语言称为协议。搜索“mysql protocol”或“postgres protocol”以获取您需要实现的规范。

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

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