Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 2.02 KB

README.md

File metadata and controls

55 lines (35 loc) · 2.02 KB

com.rajesuwerps.sqlExec

Appcelerator Titanium Appcelerator Alloy

This is a widget for the Alloy MVC framework of Appcelerator's Titanium platform. A widget to quickly inspect the SQLite database in your app, during development, by executing SQL commands. You type in the SQL statement, press 'execute' and the result is shown in the view below. You could use it to set up the database, creating tables, and quickly inspect the data that could save you some time and hassle during development.

Usage gitTio

  • Install this widget via gitTio:

    gittio install com.rajesuwerps.sqlExec

  • You can use it like this, say in app/views/index.xml:

```
  • You can use <Require> or <Widget>. Example of using is as follows:

```
  • Call init() from the controller, say app/controllers/index.js:

    $.sqlExec.init({dbName: 'my-database-name'});
    

    Replace 'my-database-name' with name of the SQLite database that you use (or plan to use) in your app.

For more on using database in Titanium refer to Working with a SQLite Database

Changelog

  • 1.0.1: fix

License

Copyright 2015 Rajesuwer PS
MIT License. See LICENSE file for details