设计您自己的 MySQL 或 PostgreSQL 连接?

发布于 2024-10-19 17:26:36 字数 224 浏览 1 评论 0原文

我有兴趣在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

﹂绝世的画 2024-10-26 17:26:36

通常,客户端和服务器通信所使用的语言称为协议。搜索“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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文