As far as I know, standard Python DB api does not provide exact SQL type information of result rowset.
Is there anyway to get exact SQL type and some more detailed information like tinyint, bigint, nvarchar(100) for some result rowset rather than truncated python type like int, str ... ?
I think portability or module dependency is not important - something just work would be fine. (I'm working on windows, MS-SQL.)