我如何知道 Grails 控制器中的驱动程序连接

发布于 2024-12-01 04:55:17 字数 342 浏览 1 评论 0原文

我需要知道我的 grails 应用程序是否使用 MySQL、PostgreSQL 或 Oracle 连接器,然后在控制器中我需要根据它配置的连接切换情况,

def conn = <any class and method for know the connection>
switch(conn){
   case 'my': .....
       breal
   case 'pg': .....
       breal
   case 'ora': .....
       breal
   default: .....
       breal
}

请帮助我...谢谢大家!

I need know if my grails app is using the MySQL, PostgreSQL or Oracle connector, then in a Controller I need switching the cases depending of the connection that it has configured

def conn = <any class and method for know the connection>
switch(conn){
   case 'my': .....
       breal
   case 'pg': .....
       breal
   case 'ora': .....
       breal
   default: .....
       breal
}

Please if you can help me... thanks for all!

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

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

发布评论

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

评论(1

波浪屿的海角声 2024-12-08 04:55:17
def dbDriver = grailsApplication.config.dataSource.driverClassName
def dbDriver = grailsApplication.config.dataSource.driverClassName
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文