All Projects → 570622566 → FastandrDb

570622566 / FastandrDb

Licence: other
android 数据库管理

Programming Languages

java
68154 projects - #9 most used programming language
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to FastandrDb

PagingLocal
Android Architecture Component - Paging room database with local data
Stars: ✭ 21 (+5%)
Mutual labels:  android-database
reactor
Reactor is key value database and is a great alternative to Shared Preferences.
Stars: ✭ 37 (+85%)
Mutual labels:  android-database
PowerPreference
💾 A Powerful library to control and simplify the usage of shared preference in Android.
Stars: ✭ 95 (+375%)
Mutual labels:  android-debug-database
Android Mvvm Architecture
This repository contains a detailed sample app that implements MVVM architecture using Dagger2, Room, RxJava2, FastAndroidNetworking and PlaceholderView
Stars: ✭ 2,720 (+13500%)
Mutual labels:  android-debug-database
Android Debug Database
A library for debugging android databases and shared preferences - Make Debugging Great Again
Stars: ✭ 7,946 (+39630%)
Mutual labels:  android-debug-database
AdbNet
A tool that allows you to search for vulnerable android devices across the world and exploit them.
Stars: ✭ 112 (+460%)
Mutual labels:  android-debug-database

由于在android开发中涉及到数据库方面的开发的过程中遇到很多麻烦和困扰,就着手写了个android数据库调试管理工具FastAndr-dbms,希望对大家有点帮助

二话不说,先上图

图一

图二

图三

界面还是比较小清新....

框架功能使用

功能

  1. 可视化数据编辑界面

  2. 可配置服务端口号

  3. 可增、删、改、查 数据库及SharedPreference的数据

缺陷

  1. 不可自定义sqlite语句查询

  2. 数据库获取到的boolean型数据只能0或1显示

使用

  1. gradle添加
compile 'cn.hotapk:fastandr_dbms:0.4.0'

如果gson冲突

 compile ('cn.hotapk:fastandr_dbms:0.4.0'){
        exclude group: 'com.google.code.gson'
    }
  1. manifest添加网络权限
<uses-permission android:name="android.permission.INTERNET" />
  1. 开启服务
 try {
           FDbManager.init(this).startServer();
        } catch (Exception e) {
            e.printStackTrace();
        }

默认端口号为8888,如要配置,按以下方式

 FDbManager  fDbManager= FDbManager.init(this);
fDbManager.setPort(9999);
fDbManager.startServer();
  1. web查看

浏览器打开 http://xxx.xxx.xxx.xxx:8888 即可

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].