go - 如何使用gorm从数据库中删除项目范围

标签 go go-gorm

每次我运行 gorm 查询以从表中删除一系列行时,我都会收到以下错误。

(/home/gregf/code/go/src/github.com/gregf/gormtest/main.go:39)
[2015-06-24 18:55:56]  [0.34ms]  SELECT  id FROM "podcasts"

(/home/gregf/code/go/src/github.com/gregf/gormtest/main.go:50)
[2015-06-24 18:55:56]  near "LIMIT": syntax error

(/home/gregf/code/go/src/github.com/gregf/gormtest/main.go:50)
[2015-06-24 18:55:56]  [0.82ms]  DELETE FROM "episodes"  WHERE (podcast_id = '1') LIMIT 4 OFFSET 2
2015/06/24 18:55:56 &{{0 0   false } near "LIMIT": syntax error 0 <nil> 0xc20802c280 0xc20802c140 0xc20802f900 2 <nil> <nil> false  map[gorm:started_transaction0xc2080380c00xc20805a1c0:true] map[]}

直接在sqlite3中运行查询返回就好了

DELETE FROM "episodes"  WHERE (podcast_id = '1') LIMIT 4 OFFSET 2;
Run Time: real 0.000 user 0.000000 sys 0.000000

示例代码

package main

import (
    "log"

    "github.com/jinzhu/gorm"
    _ "github.com/mattn/go-sqlite3"
)

type Podcast struct {
    Id       int
    Title    string
    RssUrl   string `sql:"unique_index"`
    Episodes []Episode
}

type Episode struct {
    Id         int
    PodcastID  int
    Title      string
    Url        string `sql:"unique_index"`
    Downloaded bool
    Guid       string `sql:"unique_index"`
}

func main() {
    db, err := gorm.Open("sqlite3", "cache.db")
    if err != nil {
        log.Fatal(err)
    }
    db.LogMode(true)

    db.CreateTable(&Podcast{})
    db.CreateTable(&Episode{})

    rows, err := db.Table("podcasts").Select("id").Rows()
    if err != nil {
        log.Fatal(err)
    }

    for rows.Next() {
        var podcastId int
        rows.Scan(&podcastId)
        err := db.Table("episodes").Where("podcast_id = ?", podcastId).
            Limit(4).
            Offset(2).
            Delete(Episode{})

        if err != nil {
            log.Printf("%s\n", err)
        }
    }
}

最佳答案

看来是sqlite3驱动的问题。 请检查此线程:How do you enable LIMIT for DELETE in SQLite?

您需要以某种方式将标志 SQLITE_ENABLE_UPDATE_DELETE_LIMIT 传递给此驱动程序。不幸的是,我不知道怎么做,因为驱动程序使用 SQLite 源代码的“合并”,文档说你不能用它使用 SQLITE_ENABLE_UPDATE_DELETE_LIMIT ( https://www.sqlite.org/compile.html )。

关于go - 如何使用gorm从数据库中删除项目范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31038805/

相关文章:

json - json 编码时间中可变的亚秒数

go - 我应该在哪个函数中传递 WaitGroup?

go - 如何(简洁地)从 Go 中的 slice 中删除第一个元素?

database - 防止空(或数据库中的空字符串值)

go - 如何在范围内插入记录数组

postgresql - 在GORM中如何做bytea?

string - 在错误消息中包含数据的惯用方法是什么?

http - 使用http时使用delete函数删除 map 条目

go - 匿名函数似乎没有在 Go 例程中执行

mysql - 软删除级联不起作用