1
This commit is contained in:
parent
0431c236bd
commit
30a7e2a6ea
@ -13,6 +13,9 @@ type DataSet struct {
|
|||||||
|
|
||||||
func (this *DataSet) Next() bool {
|
func (this *DataSet) Next() bool {
|
||||||
ret := this.rows.Next()
|
ret := this.rows.Next()
|
||||||
|
if !ret {
|
||||||
|
return ret
|
||||||
|
}
|
||||||
this.GetColumns()
|
this.GetColumns()
|
||||||
this.values = []interface{}{}
|
this.values = []interface{}{}
|
||||||
for i := 0; i < len(this.columns); i++ {
|
for i := 0; i < len(this.columns); i++ {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user