Alias of the ``dialect_kwargs`` ``'oracle_order'``. .. deprecated:: 2.1 The 'order' attribute is deprecated.
(self)
| 4025 | |
| 4026 | @property |
| 4027 | def order(self) -> Optional[bool]: |
| 4028 | """Alias of the ``dialect_kwargs`` ``'oracle_order'``. |
| 4029 | |
| 4030 | .. deprecated:: 2.1 The 'order' attribute is deprecated. |
| 4031 | """ |
| 4032 | value: Optional[bool] = self.dialect_kwargs.get("oracle_order") |
| 4033 | return value |
| 4034 | |
| 4035 | def _as_dict(self) -> Dict[str, Any]: |
| 4036 | return { |