1 Star 1 Fork 0

bigbase/pg

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
result.go 723 Bytes
一键复制 编辑 原始数据 按行查看 历史
Vladimir Mihailenco 提交于 2017-06-20 12:44 . Improve ErrNoRows tests
package pg
import (
"bytes"
"strconv"
"github.com/go-pg/pg/internal"
"github.com/go-pg/pg/orm"
)
// A result summarizes an executed SQL command.
type result struct {
model orm.Model
affected int
returned int
}
var _ orm.Result = (*result)(nil)
func (res *result) parse(b []byte) error {
res.affected = -1
ind := bytes.LastIndexByte(b, ' ')
if ind == -1 {
return nil
}
s := internal.BytesToString(b[ind+1 : len(b)-1])
affected, err := strconv.Atoi(s)
if err == nil {
res.affected = affected
}
return nil
}
func (res *result) Model() orm.Model {
return res.model
}
func (res *result) RowsAffected() int {
return res.affected
}
func (res *result) RowsReturned() int {
return res.returned
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/bigbase/pg.git
git@gitee.com:bigbase/pg.git
bigbase
pg
pg
v6.9.1

搜索帮助