What is the maximum number of indexes per table for SQLite ? (on Windows XP if that changes anything!)

link|improve this question
1  
It's questions like this that make me think that, regardless of the answer, the underlying reason you're asking needs to be reconsidered. – Joe Jul 12 '11 at 13:34
Don't worry! :) I was not about to create 128 indexes on the same table!!! – Benoit St-Jean Jul 12 '11 at 14:15
feedback

1 Answer

I found this when I searched "sqlite indexes". I use Google; it's a pretty good search engine.

There are no arbitrary limits on the number of indices that can be attached to a single table. The number of columns in an index is limited to the value set by sqlite3_limit(SQLITE_LIMIT_COLUMN,...).

link|improve this answer
Yep, I knew about this Google thing... lol ;) I guess my search was way too precise to find any useful link! But thanks again! – Benoit St-Jean Jul 12 '11 at 14:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.