DataInterfaceStream
Close
close a DataInterfaceStream Module
Calling Sequence
Parameters
Description
Examples
stream:-Close( )
stream
-
DataInterfaceStream module
Close is used to close a DataInterfaceStream module. This happens automatically when this object is garbage collected; however, you can call Close to release the resources earlier.
Any descendant modules of stream are closed when stream is closed. (A module is a descendant of a parent module if it is returned by one of the parent module's exports or if it is a descendant of one of the parent module's descendants.)
driver≔DatabaseLoadDriver⁡:
conn≔driver:-OpenConnection⁡url,name,pass:res≔conn:-ExecuteQuery⁡SELECT * FROM stream:res:-Next⁡
true
str≔res:-GetData⁡1,stream=true:str:-Read⁡10
the quick
str:-Close⁡;str:-Read⁡10
Error, (in Read) this object has been closed, no further operations are possible
See Also
Database
Database[DataInterfaceStream]
Database[DataInterfaceStream][Read]
Database[DataInterfaceStream][Skip]
Database[usage]
Download Help Document