5
我試過,例如:如何在ScalaQuery中指定Postgresql模式?
object WebCache extends Table[(...)]("myschema.mytable") {
...
}
但是,這並不工作。
我試過,例如:如何在ScalaQuery中指定Postgresql模式?
object WebCache extends Table[(...)]("myschema.mytable") {
...
}
但是,這並不工作。
油滑:
object WebCache extends Table[(...)](Some("myschema"), "mytable") {
...
}
應該工作。
從scalaquery郵件列表中得到答案。這是ScalaQuery的限制。
目前尚不支持,但它應該很容易添加。 我爲此 問題創建了https://github.com/szeiger/scala-query/issues/19問題。