database returns null as -2147483648
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
When I executed a query using MySQL console null values returned correctly. But when I queried the same data using database function in Matlab all the null values were returned as -2147483648. Has anyone encountered this?
2 Kommentare
Walter Roberson
am 13 Aug. 2017
Looks like -2^31 which is the most negative possible 32 bit integer. What is class() of the returned data? If it is integral then there would be no representation available in the data type to signal missing. Floating point numbers have NaN designed in, but integral data types do not.
Antworten (0)
Siehe auch
Kategorien
Mehr zu Database Toolbox finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!