Hi, I see that there is a default limit of 10 attached databases. And from
the docs, 125 is limit. However, in the file sqliteLimit.h it says

/*
** The maximum number of attached databases.  This must be between 0
** and 62.  The upper bound on 62 is because a 64-bit integer bitmap
** is used internally to track attached databases.
*/
#ifndef SQLITE_MAX_ATTACHED
# define SQLITE_MAX_ATTACHED 10
#endif


So is the limit 62 or is the limit 125?

Reply via email to