QueryRow reads the results from the next query in the batch as if the query has been sent with QueryRow.
()
| 386 | |
| 387 | // QueryRow reads the results from the next query in the batch as if the query has been sent with QueryRow. |
| 388 | func (br *pipelineBatchResults) QueryRow() Row { |
| 389 | rows, _ := br.Query() |
| 390 | return (*connRow)(rows.(*baseRows)) |
| 391 | } |
| 392 | |
| 393 | // Close closes the batch operation. Any error that occurred during a batch operation may have made it impossible to |
| 394 | // resyncronize the connection with the server. In this case the underlying connection will have been closed. |