C++ 的数据库架构代码生成器

发布于 2024-10-16 08:40:28 字数 41 浏览 2 评论 0原文

我想知道是否有开源或专有软件可以用来从数据库模式生成 C++ 代码。

I want to know if there is an open source or proprietary software that I can use to generate a C++ code from a database schema.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

八巷 2024-10-23 08:40:28

如果您想为表生成类,为数据和数据生成 getters/setters。对于表中关系的继承/组合/聚合,您可以通过创建特定于域的语言来处理您的任务来实现这一点。像 lex/yacc 这样的编译器工具可以对您有所帮助。您可以定义一个语法(这对于您的问题陈述来说不是一件容易的任务),然后使用 lex/yacc 来解决您的问题。

If you want to generate classes for your tables, getters/setters for the data & inheritance/composition/aggregation for the relationships in your tables you can do this by creating a domain specific language for handling your task. Compiler-Compiler tools like lex/yacc can be of help to you. You can define a grammar (this wont be very easy task for your problem statement) and then use lex/yacc to solve your problem.

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