You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: deprecate usage of cursor.execute statements in favor of the in class implementation of execute. (#60748)
* refactor: deprecate usage of `cursor.execute` statements in favor of the in class implementation of `execute`.
* chore: using cursor from transaction
* using base exceptions
* chore: update docs
* chore: update whatsnew
* chore: using 'import_optional_dependency' to import pyarrow and changing import order
* docs: add issue number
Copy file name to clipboardexpand all lines: doc/source/whatsnew/v3.0.0.rst
+1
Original file line number
Diff line number
Diff line change
@@ -70,6 +70,7 @@ Other enhancements
70
70
- :meth:`Series.str.get_dummies` now accepts a ``dtype`` parameter to specify the dtype of the resulting DataFrame (:issue:`47872`)
71
71
- :meth:`pandas.concat` will raise a ``ValueError`` when ``ignore_index=True`` and ``keys`` is not ``None`` (:issue:`59274`)
72
72
- :py:class:`frozenset` elements in pandas objects are now natively printed (:issue:`60690`)
73
+
- Errors occurring during SQL I/O will now throw a generic :class:`.DatabaseError` instead of the raw Exception type from the underlying driver manager library (:issue:`60748`)
73
74
- Implemented :meth:`Series.str.isascii` and :meth:`Series.str.isascii` (:issue:`59091`)
74
75
- Multiplying two :class:`DateOffset` objects will now raise a ``TypeError`` instead of a ``RecursionError`` (:issue:`59442`)
75
76
- Restore support for reading Stata 104-format and enable reading 103-format dta files (:issue:`58554`)
0 commit comments