I am trying to read a stored procedure by using pandas.read_sql
method in Python by using the pyodbc driver.
The issue I have is when Pandas reads data, it converts int
columns to float
which have Null values in it.
Is there a way to fill those null values at pyodbc driver by applying some configuration or hooking some custom converters?
I do not want to change that on SQL level or when i read it through pandas.