diff --git a/cx_Oracle_async/cursors.py b/cx_Oracle_async/cursors.py index bcd0f0b..27fa58c 100644 --- a/cx_Oracle_async/cursors.py +++ b/cx_Oracle_async/cursors.py @@ -43,3 +43,7 @@ async def var(self, args): async def callproc(self, *args , **kwargs): return await self._loop.run_in_executor(self._thread_pool , self._cursor.callproc, *args , **kwargs) + + @property + def description(self): + return self._cursor.description