This commit is contained in:
aozhiwei 2023-12-11 17:56:28 +08:00
parent 0431c236bd
commit 30a7e2a6ea

View File

@ -13,6 +13,9 @@ type DataSet struct {
func (this *DataSet) Next() bool {
ret := this.rows.Next()
if !ret {
return ret
}
this.GetColumns()
this.values = []interface{}{}
for i := 0; i < len(this.columns); i++ {