tags:

views:

30

answers:

1

Does anyone have a link(or know) what all comes from calling the getResult() function on an adobe-air sql statement?

+1  A: 

A SQLResult object comes back. Details on getResult() here. You'll usually be interested in the "data" property of the SQLResult.

chrissr
Are these the same results you would get with the javascript version of getResult?
Corey Hart
It should be the same, yes. Here's the javascript language reference for SQLResult: http://help.adobe.com/en_US/AIR/1.5/jslr/flash/data/SQLResult.html
chrissr
Thanks, these docs are much better than the ones I was working with!
Corey Hart

related questions