ADODB Object
 
Syntax
 
streamobject.Close
 
Description
Close a Stream object.
 
The Close method is used to close a Stream object. As a consequence, you also lose access to any associated data.
 
Closing a Stream object does not delete it from memory. You can later use the Open method to reopen the same Record, with or without the same properties. If you have closed an object and you no longer need it, you can set it equal to Nothing which will remove it from memory.
See Also
Connection.Close, Record.Close, Open, Recordset.Close.
Example
 
objStream.Open rsGuruData, adModeReadWrite
objStream.Position = 0
...
objStream.Close