dshxbrzgi090608692 2018-05-09 17:17
浏览 716
已采纳

使用gorm在sqlite中的时间列

I am trying to query objects from sqlite but getting this error because of the type time:

(sql: Scan error on column index 1: unsupported Scan, storing driver.Value type []uint8 into type *time.Time)

my struct is:

type Timeline struct {
ID        string     `json:"id"`
Timestamp *time.Time `json:"timestamp"`

and my database is like this:

CREATE TABLE timelines (id text, timestamp text, ...

and one of the sample rows is:

('Locked in VR', '2018-03-17 10:50:59.548+01:00',...

any ideas? should I have something in the struct like?

Timestamp *time.Time `json:"timestamp" gorm:"time"`
  • 写回答

2条回答 默认 最新

  • dop82210 2018-05-09 19:39
    关注

    I am not familiar with gorm, but should not the definition of timestamp of type datetime instead of text? Also: when you tag gorm:"time" the column name should be time and not timestamp, or the tag gorm:"timestamp". But you can leave out the gorm tag.

    To make it simple, you can let gorm create the table:

    db, err := gorm.Open("sqlite3", "test.db")
    db.CreateTable(&Timeline{})
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本