Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
This class contains the constants that represent the possible values for the
SQLError.operation
property. These values indicate the attempted operation
that caused the error to occur.
Each value represents one of the operations of the SQLConnection class
or the SQLStatement class.
public static const ANALYZE:String = "analyze"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.analyze()
method was called.
See also
public static const ATTACH:String = "attach"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.attach()
method was called.
See also
public static const BEGIN:String = "begin"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.begin()
method was called.
See also
public static const CLOSE:String = "close"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.close()
method was called.
See also
public static const COMMIT:String = "commit"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.commit()
method was called.
See also
public static const COMPACT:String = "compact"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.compact()
method was called.
See also
public static const DEANALYZE:String = "deanalyze"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.deanalyze()
method was called.
See also
public static const DETACH:String = "detach"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.detach()
method was called.
See also
public static const EXECUTE:String = "execute"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that either the SQLStatement.execute()
method
or the SQLStatement.next()
method was called.
See also
public static const OPEN:String = "open"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that either the SQLConnection.open()
method or the SQLConnection.openAsync()
method was called.
See also
public static const REENCRYPT:String = "reencrypt"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.5 |
Indicates that the SQLConnection.reencrypt()
method was called.
See also
public static const ROLLBACK:String = "rollback"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.rollback()
method was called.
See also
public static const SCHEMA:String = "schema"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.loadSchema()
method was called.
See also