设计您自己的 MySQL 或 PostgreSQL 连接?
我有兴趣在 Common Lisp 中创建自己的与 MySQL 或 PostgreSQL 的连接。我知道 Common Lisp 已经存在一些库,但我想通过自己这样做来更好地理解各自的数据库语言和 Common Lisp。我在谷歌和 stackoverflow 上搜索了一下,但没有找到任何与我正在寻找的内容相关的内容。我也查看了 MySQL 和 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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,客户端和服务器通信所使用的语言称为协议。搜索“mysql 协议”或“postgres 协议”以获取您需要实现的规范。
http://dev.mysql.com/doc/internals/en /client-server-protocol.html
http://developer.postgresql.org /pgdocs/postgres/protocol.html
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