Skip to content

Instantly share code, notes, and snippets.

@marshall
Created September 13, 2010 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marshall/577943 to your computer and use it in GitHub Desktop.
Save marshall/577943 to your computer and use it in GitHub Desktop.
var db = Ti.Database.open('/sdcard/test.db');
var rs = db.execute('SELECT message FROM test');
if (rs.isValidRow()) {
alert(rs.getFieldByName("message"));
}
rs.close();
db.close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment