我想使用anorm和Magic [T]访问Play Scala中的两个数据库,(一个是H2,另一个是PostgreSQL)。我只是不知道如何配置它......
我注意到我们可以在conf / application.conf中设置另一个数据库连接
db_other.url=jdbc:mysql://localhost/test
db_other.driver=com.mysql.jdbc.Driver
db_other.user=root
db_other.pass=
但是,如何将它与魔术一起使用? (我阅读了Magic的源代码,但不理解它......我是Scala的新生)
无论如何,如果使用Magic [T]无法进行多次数据库访问,我希望使用anorm进行访问,那么我该如何配置呢?
var sqlQuery = SQL( //I guess some config params should be set here, but how?
"""
select * from Country
"""
)
答案 0 :(得分:2)
在play.api.db.DB
中,您可以传入您在application.conf
中定义的名称字符串。
然后使用此处指定的方法之一:http://www.playframework.org/documentation/2.0/ScalaDatabase
# play.api.db.DB.class
def withConnection[A](name : scala.Predef.String)(block : scala.Function1[java.sql.Connection, A])(implicit app : play.api.Application) : A = { /* compiled code */ }