我想建立第二個數據庫連接到另一個服務器上的另一個數據庫。我們正在使用play framework 1.2.4,並且我發現了1.2.3的以下文檔。多個數據庫在播放框架
http://www.playframework.org/documentation/1.2.3/model#multiple
application.conf:
db_other.url=jdbc:mysql://localhost/test
db_other.driver=com.mysql.jdbc.Driver
db_other.user=root
db_other.pass=
Connection conn = DB.getDBConfig("other").getConnection()
這並沒有爲我工作,所以我做了一點搜索,發現下面的文章。 這篇文章告訴我,上面的配置從1.3主分支泄露,並在未來可...
JPA.getJPAConfig method not found on Play's API
https://play.lighthouseapp.com/projects/57987/tickets/706
誰能給我一個方法,做一些簡單的查詢到其他數據庫?我想我不是唯一一個想要使用多個數據庫的人。
謝謝!
對於使用名單測試查詢到另一個數據庫在同一臺服務器IM = JPA.em()。 createNativeQuery(「SELECT * FROM other_db..TABLE」)。getResultList();在sybase – n4cer 2012-02-03 08:37:54