作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在Doobie中读取/写入时间戳?
我有一个包含时间戳字段的记录类。当我尝试将其写入数据库或使用doobie进行读取时,出现错误Cannot find or construct a Read instance for type
。
case class ExampleRecord(data: String, created_at: Timestamp)
val create = sql"create table if not exists example_ts (data TEXT NOT NULL, created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP)".update.run
val insert = Update[ExampleRecord]("insert into example_ts (data, created_at) values (?, ?)")
.updateMany(List(
ExampleRecord("one", Timestamp.valueOf(LocalDateTime.now())),
ExampleRecord("two", Timestamp.valueOf(LocalDateTime.now()))
))
val select = sql"select data, created_at from example_ts".query[ExampleRecord].stream
val app = for {
_ <- create.transact(xa).compile.drain
_ <- insert.transact(xa).compile.drain
_ <- select.transact(xa).compile.drain
} yield ()
app.unsafeRunSync()
最佳答案
您需要导入doobie.implicits.javasql._
和doobie.implicits.javatime._
release notes。这是使用doobie的完整应用示例读/写时间戳。
// sbt
// "org.tpolecat" %% "doobie-core" % "0.8.8",
// "org.tpolecat" %% "doobie-postgres" % "0.8.8"
import java.sql.Timestamp
import java.time.LocalDateTime
import doobie._
import doobie.implicits._
import doobie.implicits.javasql._
import doobie.postgres._
import doobie.postgres.implicits._
import doobie.postgres.pgisimplicits._
import cats._
import cats.implicits._
import cats.effect._
import cats.effect.implicits._
case class ExampleRecord(data: String, created_at: Timestamp)
object Example extends IOApp {
override def run(args: List[String]): IO[ExitCode] = {
val xa = Transactor.fromDriverManager[IO](
"org.postgresql.Driver", // driver classname
"jdbc:postgresql:example_db", // connect URL (driver-specific)
"postgres", // user
"" // password
)
val drop = sql"drop table if exists example_ts".update.run
val create =
sql"create table if not exists example_ts (data TEXT NOT NULL, created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP)".update.run
val insert = Update[ExampleRecord]("insert into example_ts (data, created_at) values (?, ?)")
.updateMany(List(
ExampleRecord("one", Timestamp.valueOf(LocalDateTime.now())),
ExampleRecord("two", Timestamp.valueOf(LocalDateTime.now()))
))
val setup = for {
_ <- drop.transact(xa)
_ <- create.transact(xa)
_ <- insert.transact(xa)
} yield ()
val select =
sql"select data, created_at from example_ts".query[ExampleRecord].stream.transact(xa)
val output = select.evalTap { record =>
IO(println(record))
}.compile.drain
for {
_ <- setup
_ <- output
} yield ExitCode.Success
}
}
关于postgresql - 如何在Doobie(Postgres)中读取/写入时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60636473/
我是一名优秀的程序员,十分优秀!