1
0
mirror of https://github.com/astaxie/beego.git synced 2024-12-23 06:30:50 +00:00

Merge pull request #3247 from mohan2808/develop

send ErrNoRows if the query returns zero rows ... in method orm_query…
This commit is contained in:
astaxie 2018-07-20 14:34:23 +08:00 committed by GitHub
commit 27ced1d9c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -198,7 +198,11 @@ func (o *querySet) PrepareInsert() (Inserter, error) {
// query all data and map to containers.
// cols means the columns when querying.
func (o *querySet) All(container interface{}, cols ...string) (int64, error) {
return o.orm.alias.DbBaser.ReadBatch(o.orm.db, o, o.mi, o.cond, container, o.orm.alias.TZ, cols)
num, err := o.orm.alias.DbBaser.ReadBatch(o.orm.db, o, o.mi, o.cond, container, o.orm.alias.TZ, cols)
if num == 0 {
return 0, ErrNoRows
}
return num, err
}
// query one row data and map to containers.