MCPcopy
hub / github.com/go-sql-driver/mysql / NextResultSet

Method NextResultSet

rows.go:205–213  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

203}
204
205func (rows *textRows) NextResultSet() (err error) {
206 resLen, err := rows.nextNotEmptyResultSet()
207 if err != nil {
208 return err
209 }
210
211 rows.rs.columns, err = rows.mc.readColumns(resLen, nil)
212 return err
213}
214
215func (rows *textRows) Next(dest []driver.Value) error {
216 if mc := rows.mc; mc != nil {

Callers 6

queryMethod · 0.45
TestMultiResultSetFunction · 0.45
TestSkipResultsFunction · 0.45
runCallCommandFunction · 0.45
queryMethod · 0.45

Calls 2

nextNotEmptyResultSetMethod · 0.80
readColumnsMethod · 0.80

Tested by 4

TestMultiResultSetFunction · 0.36
TestSkipResultsFunction · 0.36
runCallCommandFunction · 0.36