作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图了解 Slick 是如何工作的以及如何使用它......并查看他们在 GitHub 中的示例我最终在 MultiDBCakeExample.scala 中得到了这个代码片段| :
trait PictureComponent { this: Profile => //requires a Profile to be mixed in...
import profile.simple._ //...to be able import profile.simple._
object Pictures extends Table[(String, Option[Int])]("PICTURES") {
...
def * = url ~ id
val autoInc = url returning id into { case (url, id) => Picture(url, id) }
def insert(picture: Picture)(implicit session: Session): Picture = {
autoInc.insert(picture.url)
}
}
}
*
方法返回表中的一行,而
autoInc
应该以某种方式提供自动增加实体 id 的功能......但说实话,我在理解这段代码时遇到了一些麻烦。什么
returning
引用?什么
autoInc
返回?
最佳答案
因为那 autoInc
可能会令人困惑,我将为您提供一个工作示例(请注意,我的数据库是 PostgreSQL,因此我需要使用 forInsert
进行破解,以便使 Postgresql 驱动程序增加 auto-inc 值)。
case class GeoLocation(id: Option[Int], latitude: Double, longitude: Double, altitude: Double)
/**
* Define table "geo_location".
*/
object GeoLocations extends RichTable[GeoLocation]("geo_location") {
def latitude = column[Double]("latitude")
def longitude = column[Double]("longitude")
def altitude = column[Double]("altitude")
def * = id.? ~ latitude ~ longitude ~ altitude <> (GeoLocation, GeoLocation.unapply _)
def forInsert = latitude ~ longitude ~ altitude <> ({ (lat, long, alt) => GeoLocation(None, lat, long, alt) },
{ g: GeoLocation => Some((g.latitude, g.longitude, g.altitude)) })
}
abstract class RichTable[T](name: String) extends Table[T](name) {
def id = column[Int]("id", O.PrimaryKey, O.AutoInc)
val byId = createFinderBy(_.id)
}
GeoLocations.forInsert.insert(GeoLocation(None, 22.23, 25.36, 22.22))
None
为
id
,当 Slick 插入这个新实体时,它会由 PostgreSql 驱动程序自动生成。
forInsert
预测,另一种方法如下 - 在我的情况下,实体是
Address
.
session.withTransaction {
DBSchema.tables.drop
DBSchema.tables.create
// Create schemas to generate ids too.
Q.updateNA("create sequence address_seq")
}
once
类中定义了这个
RichTable
:
def getNextId(seqName: String) = Database { implicit db: Session =>
Some((Q[Int] + "select nextval('" + seqName + "_seq') ").first)
}
insert
中方法如:
def insert(model : Address) = Database { implicit db: Session =>
*.insert(model.copy(id = getNextId(classOf[Address].getSimpleName())))
}
None
当你做一个插入时,这个方法会为你做一个很好的工作......
关于scala - Slick:autoInc 在 MultiDBCakeExample 示例中是如何工作的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13739182/
我试图了解 Slick 是如何工作的以及如何使用它......并查看他们在 GitHub 中的示例我最终在 MultiDBCakeExample.scala 中得到了这个代码片段| : trait P
我是一名优秀的程序员,十分优秀!