user850010
user850010

Reputation: 6359

How many Databases can be Attached to Sqlite Connection?

I am refactoring my Sqlite Helper class in .NET, so that it supports attaching database and would like to know how many databases can be attached to the connection?

In http://sqlite.org it says the limit is SQLITE_LIMIT_ATTACHED but I could not find its default value.

Upvotes: 1

Views: 1080

Answers (1)

Malcolm
Malcolm

Reputation: 41510

According to the limits of SQLite, the default number is 10.

Upvotes: 3

Related Questions