Subsonic——让客户切换数据库
我是 Subsonic 的新手,我想了解以下场景的最佳实践:
Subsonic 支持多种数据库系统,例如 SQLServer 和 MySQL。我们的客户在将我们的应用程序部署到他们的服务器时需要决定应使用哪个数据库系统。长话短说:providerName 通常在应用程序配置中指定,在应用程序完成后应该是可配置的。
这怎么能做到呢?我是否必须为我想要支持的每个数据库系统生成单独的数据库?
提前谢谢你
马可
I am new to subsonic and I'd like to know about the best practices regarding the following scenario:
Subsonic supports multiple database systems, e.g. SQLServer and MySQL. Our customers need to decide while deploying our application to their servers, which database system should be used. Long story short: the providerName, normally specified within the application configuration, should be configurable after the application is finished.
How can this be done? Do I have to generate seperate data libraries for each database system I want to support?
Thank you in advance
Marco
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您不需要生成单独的库。
然而,正如您所理解的,您不能使用直接的 sql 字符串,但您需要始终使用 subsonic sql 创建代码。
在不同的数据库上进行一些测试也很好,因为并非所有代码在每种情况下都得到 100% 的测试。
No you do not need to genarate seperate libraries.
How ever you can not use direct sql string as you understand but you need to go always using subsonic sql create code.
Also is good to make some tests on the diferent databases, because not all code have been 100% testes on every case.