Manage you Sqlite Database in browser
Java HTML JavaScript
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
.idea init Apr 4, 2016
app Add Readme.md Apr 4, 2016
gradle/wrapper init Apr 4, 2016
screenshots Add Readme.md Apr 4, 2016
sqliteonweb-no-op Add Readme.md Apr 4, 2016
sqliteonweb fix empty data bug. Apr 27, 2016
.gitignore init Apr 4, 2016
Readme.md Update Readme.md Apr 5, 2017
build.gradle fix empty data bug. Apr 27, 2016
gradle.properties init Apr 4, 2016
gradlew init Apr 4, 2016
gradlew.bat init Apr 4, 2016
settings.gradle init Apr 4, 2016

Readme.md

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

image

Click the address open in browser.

You can run SQL from browser to query insert or update.

Have fun. 🚀

image

License

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