Function DELETE-SQL-STREAM — Remove a component from the broadcast streams used for recording SQL commands or results.
Function
delete-sql-stream stream &KEY type database => result
A stream or T.
One of the following keyword symbols: :commands, :results or :both, defaulting to :commands.
A database object. This will default to *default-database*.
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>)
The specified broadcast stream(s) associated with database are modified.
None.
None.
start-sql-recording |
stop-sql-recording |
sql-recording-p |
sql-stream |
add-sql-stream |
delete-sql-stream |
list-sql-streams |
None.