Skip to content

Commit

Permalink
Update to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sumimakito committed Jul 31, 2015
1 parent 7f1f8a3 commit a042eb4
Show file tree
Hide file tree
Showing 4 changed files with 621 additions and 12 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=0.9.5
VERSION_CODE=7
VERSION_NAME=1.0.0
VERSION_CODE=8
GROUP=com.github.sumimakito.quickkv
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

import android.content.Context;

import com.github.sumimakito.quickkv.database.HCKeyValueDatabase;
import com.github.sumimakito.quickkv.database.KeyValueDatabase;
import com.github.sumimakito.quickkv.util.StorageManager;

Expand Down Expand Up @@ -126,6 +127,10 @@ public KeyValueDatabase getDatabase(String dbAlias, String key, boolean enableCo
return this.sKVDB.get(dbAlias);
}

public HCKeyValueDatabase getHCKVDB(String pDBName){
return new HCKeyValueDatabase(this, pDBName);
}

public boolean isDatabaseOpened() {
return this.sKVDB.containsKey(QKVConfig.KVDB_FILE_NAME);
}
Expand Down
Loading

0 comments on commit a042eb4

Please sign in to comment.