pyodbc deprecation warning when printing

Viewed 3469

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: enter image description here

I'm using Python 3.10.2 and MSSQL.

Thanks!

0 Answers
Related