I would like to save some user-specific data in my iPhone app. I was looking at the SQLite sample, and it is using something similar to this:
NSArray *paths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory, NSUserDomainMask ,YES );
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *writableDBPath = [documentsDirectory stringByAppendingPathComponent:dbName];
What I would like to know is, is "writableDBPath" unique for my app? Is there a risk that my "dbName" will clash with another file of the same name used by another app?