-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to read data in batches?? #515
Comments
Hi @codedart2018, thanks for your issue. I close this and merge it into issue #146 is still discussing this feature. |
Hi @codedart2018, I have made the function // read top 10 rows
rows, err := f.Rows("Sheet1")
if err != nil {
fmt.Println(err)
return
}
for rows.Next() {
count++
if count > 10 {
break
}
row, _ := rows.Columns()
for _, colCell := range row {
fmt.Print(colCell, "\t")
}
fmt.Println()
} |
@xuri 旭日你好!这个方法我之前已经试过了! |
Hi @codedart2018, I have refactored the |
think you! try on monday. |
1c,2G sever reads 200000 excel,memory is full.
i want to read the data in batches and return an array to me.
i really hope
thank you all
The text was updated successfully, but these errors were encountered: