1.1.4
What's Changed
- Introduce full support for linked servers (#39)
- Introduced isolation mode (#35)
The default behavior ofpytsql
is to execute each top-level command separately. Unfortunately for some context-sensitive TSQL constructs (e.g. the@@ROWCOUNT
variable) this does not work. This release introduces an optional parameter calledisolate_top_level_statements
which is set to true by default, in which case the default behavior is retained. If the parameter is passed as false, statements will be executed in batches separated byGO
commands. This gives the user more flexibility and the ability to fine-tune the batches.
Full Changelog: 1.1.3...1.1.4