You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nextResultSet, ok:=rs.rowsi.(driver.RowsNextResultSet)
if!ok {
doClose=truereturnfalse
}
// Lock the driver connection before calling the driver interface// rowsi to prevent a Tx from rolling back the connection at the same time.rs.dc.Lock()
deferrs.dc.Unlock()
rs.lasterr=nextResultSet.NextResultSet()
ifrs.lasterr!=nil {
doClose=truereturnfalse
}
I am using
go_ora.Connection.QueryContext(...)
that returnsdriver.Rows
.I want to use
NextResultSet
call like indatabase/sql:Rows
go-ora version: 2.8.19
What I am trying to do:
Maybe I should use as in Golang standard library?
I tried to find implementation of
NextResultSet
in go-ora source code same as in godror:https://github.com/godror/godror/blob/010a6de91d2687e91c1563126d3b76578c9771b5/rows.go#L776-L814
But only found this commented line:
go-ora/v2/data_set.go
Line 24 in 78d53fd
The text was updated successfully, but these errors were encountered: