Initial support for AIR

This commit is contained in:
Joshua Granick
2017-08-24 12:50:13 -07:00
parent f2a8092834
commit 9991e99fee
186 changed files with 2590 additions and 68 deletions

View File

@@ -0,0 +1,15 @@
package flash.data;
extern class SQLStatement extends flash.events.EventDispatcher {
var executing(default,never) : Bool;
var itemClass : Class<Dynamic>;
var parameters(default,never) : Dynamic;
var sqlConnection : SQLConnection;
var text : String;
function new() : Void;
function cancel() : Void;
function clearParameters() : Void;
function execute(?prefetch : Int=-1, ?responder : flash.net.Responder) : Void;
function getResult() : SQLResult;
function next(?prefetch : Int=-1, ?responder : flash.net.Responder) : Void;
}