M
milop
Hello.
I'm uncertain about what Function A (below) receives from Function B, a copy
of the dataset or the actual dataset object:
Function FunctrionA () As Dataset
Dim ds as dataset = FunctionB()
'' What is "ds" at this point?
End Function
Function FunctionB() As Dataset
Using cn as New Connection ... to a database
Using ds as Dataset = ...stored procedure call
Return ds
End Using
End Using
End Function
Thanks in advance,
Mike
I'm uncertain about what Function A (below) receives from Function B, a copy
of the dataset or the actual dataset object:
Function FunctrionA () As Dataset
Dim ds as dataset = FunctionB()
'' What is "ds" at this point?
End Function
Function FunctionB() As Dataset
Using cn as New Connection ... to a database
Using ds as Dataset = ...stored procedure call
Return ds
End Using
End Using
End Function
Thanks in advance,
Mike