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
Copy file name to clipboardExpand all lines: doc/source/io.rst
+25-12
Original file line number
Diff line number
Diff line change
@@ -3393,12 +3393,34 @@ the database using :func:`~pandas.DataFrame.to_sql`.
3393
3393
3394
3394
data.to_sql('data', engine)
3395
3395
3396
-
With some databases, writing large DataFrames can result in errors due to packet size limitations being exceeded. This can be avoided by setting the ``chunksize`` parameter when calling ``to_sql``. For example, the following writes ``data`` to the database in batches of 1000 rows at a time:
3396
+
With some databases, writing large DataFrames can result in errors due to
3397
+
packet size limitations being exceeded. This can be avoided by setting the
3398
+
``chunksize`` parameter when calling ``to_sql``. For example, the following
3399
+
writes ``data`` to the database in batches of 1000 rows at a time:
- Added ability to export Categorical data to Stata (:issue:`8633`). See :ref:`here <io.stata-categorical>` for limitations of categorical variables exported to Stata data files.
101
110
- Added ability to export Categorical data to to/from HDF5 (:issue:`7621`). Queries work the same as if it was an object array. However, the ``category`` dtyped data is stored in a more efficient manner. See :ref:`here <io.hdf5-categorical>` for an example and caveats w.r.t. prior versions of pandas.
102
111
- Added support for ``searchsorted()`` on `Categorical` class (:issue:`8420`).
0 commit comments