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

Method NextResultSet

rows.go:183–191  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

181}
182
183func (rows *binaryRows) NextResultSet() error {
184 resLen, err := rows.nextNotEmptyResultSet()
185 if err != nil {
186 return err
187 }
188
189 rows.rs.columns, err = rows.mc.readColumns(resLen, nil)
190 return err
191}
192
193func (rows *binaryRows) Next(dest []driver.Value) error {
194 if mc := rows.mc; mc != nil {

Callers

nothing calls this directly

Calls 2

nextNotEmptyResultSetMethod · 0.80
readColumnsMethod · 0.80

Tested by

no test coverage detected