Android SQLite: nullColumnHack parameter in insert/replace methods

后端 未结 1 382
走了就别回头了
走了就别回头了 2020-12-02 06:12

The Android SDK has some convenience methods for manipulating data with SQLite. However both the insert and replace methods use some nullColumnHack parameter w

相关标签:
1条回答
  • 2020-12-02 07:08

    Let's suppose you have a table named foo where all columns either allow NULL values or have defaults.

    In some SQL implementations, this would be valid SQL:

    INSERT INTO foo;
    

    That's not valid in SQLite. You have to have at least one column specified:

    INSERT INTO foo (somecol) VALUES (NULL);
    

    Hence, in the case where you pass an empty ContentValues to insert(), Android and SQLite need some column that is safe to assign NULL to. If you have several such columns to choose from, pick one via the selection mechanism of your choice: roll of the dice, Magic 8-Ball(TM), coin flip, cubicle mate flip, etc.

    Personally, I'd've just made it illegal to pass an empty ContentValues to insert(), but they didn't ask me... :-)

    0 讨论(0)
提交回复
热议问题