下面是我在Scala IntelliJ IDEA 15.0.2中的slick 2.0程序。slick 2.0錯誤Scala Intellij IDEA中的row._1錯誤15.0.2
這個節目是給在IntelliJ IDEA的編譯時錯誤:
無法解析符號_1
我依戀錯誤的屏幕截圖也。
import java.sql.Timestamp
import scala.slick.driver.PostgresDriver.simple._
case class User(
id: Long,
username: String,
email: Option[String],
password: String,
created: Timestamp)
//a simple table called 'users'
class Users(tag: Tag) extends Table[User](tag, "users") {
def id = column[Long]("id", O.PrimaryKey, O.AutoInc)
def username = column[String]("username", O.NotNull)
// an Option[] in the case class maps to a Nullable field here
def email = column[String]("email", O.Nullable)
def password = column[String]("password", O.NotNull)
// this is a hack for postgresql; if you're using another DB, comment this out
// and the corresponding field in the case class
def created = column[Timestamp]("created_at", O.NotNull, O.DBType("timestamp default now()"))
// usernames should be unique
def idx = index("users_unique_username", (username), unique = true)
//define the "shape" of a single data record
//we're saying that an object of class User (our case class) should be returned
def * = (id, username, email.?, password,created) <> (User.tupled, User.unapply)
}
val connectionUrl = "jdbc:postgresql://localhost/slick?user=slick&password=slick"
Database.forURL(connectionUrl, driver = "org.postgresql.Driver") withSession {
implicit session =>
val users = TableQuery[Users]
// SELECT * FROM users
users.list foreach { row =>
println("user with id " + row._1 + " has username " + row._2)
}
// SELECT * FROM users WHERE username='john'
users.filter(_.username === "john").list foreach { row =>
println("user whose username is 'john' has id "+row._1)
}
}
當我在eclipse階-IDE所創建的相同的程序,該程序運行正常,並獲取結果。
這是一個存在的問題,還是我錯過了我的一面?
在我看來,行實際上是用戶的一個實例。因此'._1'應該是'.id','._2'應該是'.username'。我不知道爲什麼這會在Eclipse中起作用。 – colinjwebb