Hi,
Sometimes, we have many database and we need to use any one of them.
In this situation we use SQLite ATTACH DATASE statement to choose a specific database.
Syntax of the command:
ATTACH Database YOUR_DATASE_NAME As Alias-Name;
When we use this command then, all SQLite statements would be executed under this database.
And if attached database is not created then this command will create the database with this name.
If already exist then it will attach database file.
0 Comment(s)