Skip to content

Commit cded43e

Browse files
committed
RELEASE: 0.10.0
1 parent 950d4e4 commit cded43e

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

PyPI_Description.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,21 @@ We are making progress - The Public Preview of our driver is now available! This
99
### What's Included:
1010

1111
- Everything from previous releases
12-
- **SUSE Linux Support:** Added full support for SUSE and openSUSE distributions alongside existing Alpine Linux support, broadening enterprise Linux compatibility.
12+
- **SUSE Linux Support:** Added full support for SUSE and openSUSE distributions alongside existing other Linux distros support, broadening enterprise Linux compatibility.
1313
- **Context Manager Support:** Implemented Python `with` statement support for Connection and Cursor classes with automatic transaction management and resource cleanup.
14-
- **Large Text Streaming:** Added Data At Execution (DAE) support for streaming large text parameters, eliminating memory constraints for bulk text operations.
14+
- **Large Text Streaming:** Added Data At Execution (DAE) support for streaming large text parameters (`NVARCHAR(MAX)`, `VARCHAR(MAX)`), eliminating memory constraints for bulk text `execute()` operations.
15+
- `VARBINARY(MAX)` support to follow alongwith streaming support for fetch operations.
1516
- **Enhanced Unicode Handling:** Improved emoji and international character support with robust UTF-16 encoding for reliable multilingual data processing.
1617
- **PyODBC Compatibility:** Enhanced API compatibility with pyodbc including:
1718
- DB-API 2.0 exception classes: `Warning`, `Error`, `InterfaceError`, `DatabaseError`, `DataError`, `OperationalError`, `IntegrityError`, `InternalError`, `ProgrammingError`, `NotSupportedError`
1819
- Context manager support with `with` statements for Connection and Cursor
1920
- Encoding configuration APIs: `setencoding()`, `getencoding()`, `setdecoding()`, `getdecoding()`
21+
- Cursor navigation APIs: `next()`, `__iter__()`, `scroll()`, `skip()`, `fetchval()`
22+
- Cursor attributes: `rownumber`, `messages`
23+
- Additional methods: `cursor.commit()`, `table()`
2024

2125
For more information, please visit the project link on Github: https://github.com/microsoft/mssql-python
26+
If you have any feedback, questions or need support please mail us at mssql-python@microsoft.com.
2227

2328
### What's Next:
2429

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def finalize_options(self):
8888
long_description=open('PyPI_Description.md', encoding='utf-8').read(),
8989
long_description_content_type='text/markdown',
9090
author='Microsoft Corporation',
91-
author_email='pysqldriver@microsoft.com',
91+
author_email='mssql-python@microsoft.com',
9292
url='https://github.com/microsoft/mssql-python',
9393
packages=packages,
9494
package_data={

0 commit comments

Comments
 (0)