How can I create Sqlite database file at a fix location. I am using FMDB wrapper to create database file. I want to create the database file at the location I am entering.
Asked
Active
Viewed 1,830 times
1 Answers
3
where do you want to storage your database?
fmdb
makes it very easy by FMDatabase* db = [FMDatabase databaseWithPath:@"/tmp/tmp.db"];
you could just change "/tmp/tmp.db"
to the location of your preference, maybe the application support folder.

Cesar A. Rivas
- 1,355
- 1
- 10
- 13