Reputation: 2196
try {
uploadDone = manager.getDatabase("uploadDone");
uploadDone.compact();
} catch (CouchbaseLiteException e) {
} catch (Exception e) {
}
Method threw java.lang.IllegalArgumentException
exception.
Invalid database name: uploadDone
Upvotes: 1
Views: 463
Reputation: 2196
The name must consist only of lowercase ASCII letters, digits, and the special characters _$()+-/
. It must also be less than 240 bytes and start with a lower case letter.
Upvotes: 1