开发者

What will a SQLiteCursor do if a column is null?

开发者 https://www.devze.com 2023-04-13 05:49 出处:网络
I want to get an integer from a Cursor returned from a SQLite query, but I know the integer may be null.Unfortunately I can\'t find any Cursor method allowing me to check this.

I want to get an integer from a Cursor returned from a SQLite query, but I know the integer may be null. Unfortunately I can't find any Cursor method allowing me to check this.

The code will be

mModifiedDate = cursor.getInt(cursor.getColumnIndex(MODIFIED_DATE));

I would expect a possible null value, and this is in fact desirable for various reasons—the field refers to the time a second table was modified, and the first table can be populated before the second on开发者_Go百科e is. Unfortunately, the documentation for Cursor says that whether an exception is thrown, or an error value is returned, or other behaviour, is left up to the implementation, and the SQLiteCursor documentation doesn't say ANYTHING.

What will this code do if the field is null? Is there a way to check this before calling getInt()?


there is an isNull()-method, just use if beforehand to detect null-values. Remember: It is quite common for methods that return a boolean to be named isX() instead of getX(), it can be the source of some confusion :)


From my experience, it returns 0. If 0 isn't a possible answer, then you can just check for 0. If it is a possible answer, then you need to do as pgsandstrom suggested.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号