Code Monkey home page Code Monkey logo

dbinterface's Introduction

DBInterface

SQLite databases is tough while developing. You cannot view the tables, you don't know what is getting inserted into the tables and you can't update the data and see how your application responds to it. What if you had a database manager like oracle sql developr, mysql work bench for your application's SQLite database? This library gives you that. With this library you can manage the database of your android app from the app itself. You can view, insert, delete, update the tables of your app's SQLite database from your app.

Also Support Android Room Library

Setup

Add this to your project build.gradle

allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}

Normal

version:1.0

dependencies {
    implementation 'com.github.Droidhelios:DBInterface:x.y'
}

AndroidX

dependencies {
    implementation 'com.github.Droidhelios:DBInterface:x.y'
}

In your activity class:

Usage method

      DBManager.with(dbHelper)
                .openDatabaseInterface(context);

SQLite Helper Refrence

For gatting SupportSQLiteOpenHelper refrence from Room database

    public SupportSQLiteOpenHelper getDBHelper() {
        return mRoomDatabase.getOpenHelper();
    }

For gatting SQLiteOpenHelper refrence from SQLite database

    public SQLiteOpenHelper getDbHelper() {
        return dbHelper;
    }

dbinterface's People

Contributors

droidhelios avatar alphatestingdroid avatar

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.