Is there any limit on sqlite query size?

后端 未结 2 471
温柔的废话
温柔的废话 2021-01-02 06:51

Is there any limit on how big the selection statement can be? for example suppose I have 100 failed student as selection, will my below code work?

ArrayList&         


        
2条回答
  •  无人及你
    2021-01-02 07:48

    There is also SQLITE_MAX_VARIABLE_NUMBER which limits the number of variables in a query. The default value is 999 but some distributions are compiled with higher settings.

提交回复
热议问题