mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 12:00:55 +00:00
update
This commit is contained in:
parent
06692c3e27
commit
5d0c0a03d7
@ -172,7 +172,6 @@ func (d *DB) QueryRow(query string, args ...interface{}) *sql.Row {
|
||||
stmt, err := d.getStmt(query)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
return nil
|
||||
}
|
||||
return stmt.QueryRow(args...)
|
||||
|
||||
@ -183,7 +182,6 @@ func (d *DB) QueryRowContext(ctx context.Context, query string, args ...interfac
|
||||
stmt, err := d.getStmt(query)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
return nil
|
||||
}
|
||||
return stmt.QueryRowContext(ctx, args)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user