DELETE-SQL-STREAM — Remove a component from the broadcast streams used for recording SQL commands or results.Function
stream
A stream or T
.
stream
A stream or T
.
type
One of the following keyword symbols: :commands, :results or :both, defaulting to :commands.
database
A database object. This will default to *default-database*.
result
The added stream.
Removes the supplied stream stream
from the recording broadcast stream for the SQL recording type
specified by type
on
database
which defaults to
*default-database*. type
must be one of :commands,
:results, or :both, defaulting
to :commands, depending on whether the stream
is to be added for recording SQL commands, results or both.
(list-sql-streams :type :both) => (#<Stream for descriptor 7> #<Stream for descriptor 7>) (delete-sql-stream *standard-output* :type :results) => #<Stream for descriptor 7> (list-sql-streams :type :both) => (#<Stream for descriptor 7>)