Code Monkey home page Code Monkey logo

oosqliteapp's Introduction

OOSqliteApp

Object-Oriented Android database framework based on Sqlite.

#Integration Gradle dependency

dependencies {
  compile 'com.kkmoving.open:oosqlite:1.0'
}

#How to use Define your entity

 public class User extends OOSqliteEntity {   
      private static final int NAME_COL_ID = 1;
      private static final int AGE_COL_ID = 2; 

      @Indexing
      @ColumnTag(NAME_COL_ID)    
      String name;  

      @ColumnTag(AGE_COL_ID)
      int age;    

      @Transient    
      boolean choosen;        

      float score;        
 }

Init database

public class DemoApplication extends Application {
    @Override    
    public void onCreate() {
        super.onCreate();        
        DatabaseManager.init(this);    
    }
}

public class DatabaseManager {    

    public static void init(Context context) {        
        OODatabase database = new OODatabase("app.db", 1); 
        database.registerEntity(User.class);

        OOSqliteManager.getInstance().register(database);
        OOSqliteManager.getInstance().initAllDatabase(context);    
    }   
}

Create

User.insert(user);

Retrieve

User.query(User.class, null);

Update

User.update(user);

Delete

User.delete(user);

For more detail: http://www.jianshu.com/p/f14a5d72a373

#License

Copyright 2016 kkmoving

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.

oosqliteapp's People

Contributors

kkmoving avatar

Stargazers

 avatar 刘雷刚 avatar noodleshi avatar  avatar Gnod avatar  avatar Xing Li avatar  avatar Rodriguez-Xin avatar luffycheung avatar 匹诺曹 avatar Lingfeng Yang avatar

Watchers

Rodriguez-Xin avatar  avatar

Forkers

squery islamgoda3

oosqliteapp's Issues

good job

数据库表里的默认_id 这一列没有提供外部访问 操作的 方法和属性 但是你内部调用的时候 用到了nMIDid.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.