Skip to content

lusfold/AndroidKeyValueStore

Repository files navigation

AndroidKeyValueStore

A KV store base on sqlite for Android Application. Inspired by YTKKeyValueStore.

Usage

Download the latest AAR or grab via Maven:

<dependency>
  <groupId>com.lusfold.androidkevaluestore</groupId>
  <artifactId>library</artifactId>
  <version>0.1.0</version>
  <type>aar</type>
</dependency>

or Gradle:

compile 'com.lusfold.androidkeyvaluestore:library:0.1.0@aar'

Init before use:

KVStore.init(Context context,String databaseName)  

or With a Database:

KVStore.init(SqliteDatabase database)

Destroy when app is down:

KVStore.destroy()  

Then you can use like this:

KVStore.getInstance().setDebug(true);  
KVStore.getInstance().clearTable();  
KVStore.getInstance().insert("a", "a");  
KVStore.getInstance().delete("a");  
KVStore.getInstance().insertOrUpdate("a", "b");  
KVStore.getInstance().get("a");  
KVStore.getInstance().getByPrefix("a");  
KVStore.getInstance().getByContains("a");  

More details please check source code.

License

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

A KV store base on sqlite for Android Application

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages