Android SQLiteCursor - getString returned value from a null valued column
android, cursor, sqlite
Solution
Never mind, I got the problem solved by checking for null value using the isNull method.
Problem
Cursor API tells that the behavior is defined by the implementation when a null valued column is tried to be accessed and If I go to SQLiteCursor, the behavior is not documented. Does the `SQLiteCursor` return a `NULL` or throw an `Exception`?