When I'm running print(cursor.fetchone())
(pyodbc package) I have the following warning:
main.py:33: DeprecationWarning: PyUnicode_FromUnicode(NULL, size) is deprecated; use PyUnicode_New() instead
Is that normal ? The datatype I'm trying to fetch is the following:
I'm using Python 3.10.2 and MSSQL.
Thanks!