https://github.com/skyhacker2/sqliteonweb-android
Manage you Sqlite Database in browser
https://github.com/skyhacker2/sqliteonweb-android
sqlite-database
Last synced: 8 months ago
JSON representation
Manage you Sqlite Database in browser
- Host: GitHub
- URL: https://github.com/skyhacker2/sqliteonweb-android
- Owner: skyhacker2
- Created: 2016-03-07T05:38:48.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-04-05T07:00:26.000Z (over 8 years ago)
- Last Synced: 2025-05-08T21:16:28.084Z (8 months ago)
- Topics: sqlite-database
- Language: Java
- Size: 3.83 MB
- Stars: 292
- Watchers: 13
- Forks: 43
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# SQLiteOnWeb
> A simple tool to see sqlite database data in browser
## Install
Gradle:
```
debugCompile 'io.github.skyhacker2:sqliteonweb:1.0.2'
releaseCompile 'io.github.skyhacker2:sqliteonweb-no-op:1.0.2'
```
## Setup
In `Application` or `Activity`
```
SQLiteOnWeb.init(this).start();
```
SQLiteOnWeb use `NanoHTTPD` as server and run at 9000 port default.
Use custom port to start.
```
SQLiteOnWeb.init(this, PORT).start();
```
## Run Debug App
When run app in debug mode, you will see the address in `Android Monitor`

Click the address open in browser.
You can run SQL from browser to query insert or update.
Have fun. 🚀

## License
SQLiteOnWeb is available under the MIT license. See the LICENSE file for more info.