2

これは他の自動インクリメントの質問と同様の質問ですが、autoIncを定義するための列のリストを提供する代わりに、何らかの方法でテーブル参照を提供する必要があります。MySQLを使用しています

import scala.slick.driver.MySQLDriver.simple._
import play.Logger
import slick.session.Database.threadLocalSession

object PaypalCartItems extends Table[PaypalCartItem]("paypalCartItem") {
  def id          = column[Int]("id", O.PrimaryKey, O.AutoInc)
  def itemName    = column[String]("item_name")
  def sku         = column[String]("item_number")
  def quantity    = column[String]("quantity")
  def txnId       = column[String]("txn_id")
  def url         = column[String]("url")

  def * = itemName ~ sku ~ quantity ~ txnId ~ url ~ id <> (PaypalCartItem, PaypalCartItem.unapply _)

  // I don't want to list out the columns, I need to reference the table
  def autoInc = itemName ~ sku ~ quantity ~ txnId ~ url returning id

  def insertItems(items: List[PaypalCartItem]): List[PaypalCartItem] = items map { item: PaypalCartItem =>
    val newId = PaypalCartItems.autoInc.insert(item)
    item.copy(id=newId)
  }
}

上記のコードはコンパイルされず、次のようになります。

[error]   overloaded method value insert with alternatives:
[error]   [TT](query: scala.slick.lifted.Query[TT,(String, String, String, String, String)])(implicit session: scala.slick.session.Session)Seq[Int] <and>
[error]   (value: (String, String, String, String, String))(implicit session: scala.slick.session.Session)Int
[error]  cannot be applied to (PaypalCartItem)
[error]     val newId = PaypalCartItems.autoInc.insert(item)
4

1 に答える 1

0

それがあなたを助けるかどうかはわかりませんが、私はそのようにします:

def autoInc2 = * returning id.? into {
      case (Music(_, title, artist, album, isrc, ownerId), id) => Music(id, title, artist, album, isrc, ownerId)
    }

Music の最初の引数は ID、この場合は Option[Int] です。そして、それは次のように使用されますval musicWithId = Musics.autoInc2.insert(someMusicObjectWithId)

于 2013-01-03T00:32:44.047 に答える