@@ -18,58 +18,62 @@ from Oracle Database types to Arrow data types.
1818
1919.. _oracledataframeobj :
2020
21- OracleDataFrame Objects
22- =======================
21+ DataFrame Objects
22+ =================
2323
24- OracleDataFrame objects are returned from the methods
24+ DataFrame objects are returned from the methods
2525:meth: `Connection.fetch_df_all() ` and :meth: `Connection.fetch_df_batches() `.
2626
27- Each column in OracleDataFrame exposes an `Apache Arrow PyCapsule
27+ Each column in a DataFrame exposes an `Apache Arrow PyCapsule
2828<https://arrow.apache.org/docs/format/CDataInterface/PyCapsuleInterface.html> `__
2929interface, giving access to the underlying Arrow array.
3030
3131.. dbapiobjectextension ::
3232
33+ .. versionchanged :: 3.3.0
34+
35+ Removed the prefix "Oracle" from the class name.
36+
3337.. versionadded :: 3.0.0
3438
3539.. _oracledataframemeth :
3640
37- OracleDataFrame Methods
38- -----------------------
41+ DataFrame Methods
42+ -----------------
3943
40- .. method :: OracleDataFrame .column_arrays()
44+ .. method :: DataFrame .column_arrays()
4145
42- Returns a list of :ref: `OracleArrowArray <oraclearrowarrayobj >` objects,
46+ Returns a list of :ref: `ArrowArray <oraclearrowarrayobj >` objects,
4347 each containing a select list column.
4448
45- .. method :: OracleDataFrame .column_names()
49+ .. method :: DataFrame .column_names()
4650
4751 Returns a list of the column names in the data frame.
4852
49- .. method :: OracleDataFrame .get_column(i)
53+ .. method :: DataFrame .get_column(i)
5054
51- Returns an :ref: `OracleArrowArray <oraclearrowarrayobj >` object for the column
55+ Returns an :ref: `ArrowArray <oraclearrowarrayobj >` object for the column
5256 at the given index ``i ``.
5357
54- .. method :: OracleDataFrame .get_column_by_name(name)
58+ .. method :: DataFrame .get_column_by_name(name)
5559
56- Returns an :ref: `OracleArrowArray <oraclearrowarrayobj >` object for the column
60+ Returns an :ref: `ArrowArray <oraclearrowarrayobj >` object for the column
5761 with the given name ``name ``.
5862
59- .. method :: OracleDataFrame .num_columns()
63+ .. method :: DataFrame .num_columns()
6064
6165 Returns the number of columns in the data frame.
6266
63- .. method :: OracleDataFrame .num_rows()
67+ .. method :: DataFrame .num_rows()
6468
6569 Returns the number of rows in the data frame.
6670
6771.. _oracledataframeattr :
6872
69- OracleDataFrame Attributes
70- --------------------------
73+ DataFrame Attributes
74+ --------------------
7175
72- .. attribute :: OracleDataFrame .metadata
76+ .. attribute :: DataFrame .metadata
7377
7478 This read-only attribute returns the metadata for the data frame as a
7579 dictionary with keys ``num_columns ``, ``num_rows ``, and ``num_chunks ``,
@@ -78,14 +82,17 @@ OracleDataFrame Attributes
7882
7983.. _oraclearrowarrayobj :
8084
81- OracleArrowArray Objects
82- ========================
85+ ArrowArray Objects
86+ ==================
8387
84- OracleArrowArray objects are returned by
85- :meth: `OracleDataFrame.column_arrays() `.
88+ ArrowArray objects are returned by :meth: `DataFrame.column_arrays() `.
8689
8790These are used for conversion to `PyArrow Tables
8891<https://arrow.apache.org/docs/python/generated/pyarrow.Table.html> `__, see
8992:ref: `dataframeformat `.
9093
94+ .. versionchanged :: 3.3.0
95+
96+ Removed the prefix "Oracle" from the class name.
97+
9198.. versionadded :: 3.0.0
0 commit comments