When we operate with mysql with Go, as follow:

rows, err := db.Query(....)

for rows.Next() {
    .....
}


When the driver get data? 

Get all data at once when we call `Query`???

Or only get a batch of Data when we call `Next`, and get next batch of data 
when we run out of it????

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/f55712f4-a29e-42b8-84cf-0b39b1d0b32f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to