maxNumberOfColumns property

int maxNumberOfColumns
final

There is maximum of 127 arguments for any function in SQLite. Currently we use json_object which uses 1 arg per key (column name) and one per value, which limits it to 63 arguments.

Implementation

final int maxNumberOfColumns = 63;