gpt4 book ai didi

scala - Slick 3.0.0 数据库不可知论

转载 作者:行者123 更新时间:2023-12-04 23:19:40 26 4
gpt4 key购买 nike

我开始使用 Slick 3.0.0,我喜欢它简洁的语法。尽管如此,我还是无法找到一种以与数据库无关的方式使用它的方法。

在文档中提供的以下示例中:http://slick.typesafe.com/doc/3.0.0/gettingstarted.html

我希望能够以某种方式解耦所用数据库的这段代码,并避免导入我的代码中特定的数据库(即 slick.driver.H2Driver.api._ )。

我试图通过使用蛋糕模式提供连接来摆脱它,但是“.result”成员当时不可用。

一种解决方法是导入 slick.driver.JdbcDriver.api._ ,但它已被弃用,因此不应该是一个好的起点。

任何人都找到了一种以与数据库无关且优雅的方式使用 Slick 3.0.0 的方法?

这个问题离“How to write database-agnostic Play application and perform first-time database initialization?”不远了,但那个问题关注的是 Slick 3.0.0。遗憾的是,前一个问题提供的答案并非针对 Slick 3.0.0,除了使用弃用代码的答案。

最佳答案

您正在寻找的灵巧的驱动程序类是 slick.driver.JdbcProfile .

有一个官方的示例项目slick-multidb您可以通过激活器 ( github ) 获得。这是相关的代码:

import scala.language.higherKinds
import slick.driver.JdbcProfile

/** All database code goes into the DAO (data access object) class which
* is parameterized by a Slick driver that implements JdbcProfile.
*/
class DAO(val driver: JdbcProfile) {
// Import the Scala API from the driver
import driver.api._

class Props(tag: Tag) extends Table[(String, String)](tag, "PROPS") {
def key = column[String]("KEY", O.PrimaryKey)
def value = column[String]("VALUE")
def * = (key, value)
}
val props = TableQuery[Props]

/** Create the database schema */
def create: DBIO[Unit] =
props.ddl.create

/** Insert a key/value pair */
def insert(k: String, v: String): DBIO[Int] =
props += (k, v)

/** Get the value for the given key */
def get(k: String): DBIO[Option[String]] =
(for(p <- props if p.key === k) yield p.value).result.headOption

/** Get the first element for a Query from this DAO */
def getFirst[M, U, C[_]](q: Query[M, U, C]): DBIO[U] =
q.result.head
}

客户端代码:
val dao = new DAO(H2Driver)
import dao.driver.api._
db.run(dao.insert("foo", "bar"))

关于scala - Slick 3.0.0 数据库不可知论,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31105571/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com