'Declaration Public Overloads Sub Open( _ ByVal reader As TextReader _ )
public void Open( TextReader reader )
Parameters
- reader
- TextReader to read SQL statements from.
'Declaration Public Overloads Sub Open( _ ByVal reader As TextReader _ )
public void Open( TextReader reader )
Call to this method makes consequent invocation of Execute read SQL script from specified TextReader.
This Open(String) method, as well as its overloads, does not load the text into memory or populate the Statements collection. So it is much more efficient to use Open(String) methods from performance and memory consumption points of view.