Package | flash.errors |
Class | public class SQLErrorOperation |
Inheritance | SQLErrorOperation Object |
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
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.
Related API Elements
Constant | Defined By | ||
---|---|---|---|
ANALYZE : String = "analyze" [static]
Indicates that the SQLConnection.analyze() method was called. | SQLErrorOperation | ||
ATTACH : String = "attach" [static]
Indicates that the SQLConnection.attach() method was called. | SQLErrorOperation | ||
BEGIN : String = "begin" [static]
Indicates that the SQLConnection.begin() method was called. | SQLErrorOperation | ||
CLOSE : String = "close" [static]
Indicates that the SQLConnection.close() method was called. | SQLErrorOperation | ||
COMMIT : String = "commit" [static]
Indicates that the SQLConnection.commit() method was called. | SQLErrorOperation | ||
COMPACT : String = "compact" [static]
Indicates that the SQLConnection.compact() method was called. | SQLErrorOperation | ||
DEANALYZE : String = "deanalyze" [static]
Indicates that the SQLConnection.deanalyze() method was called. | SQLErrorOperation | ||
DETACH : String = "detach" [static]
Indicates that the SQLConnection.detach() method was called. | SQLErrorOperation | ||
EXECUTE : String = "execute" [static]
Indicates that either the SQLStatement.execute() method
or the SQLStatement.next() method was called. | SQLErrorOperation | ||
OPEN : String = "open" [static]
Indicates that either the SQLConnection.open() method or the SQLConnection.openAsync() method was called. | SQLErrorOperation | ||
REENCRYPT : String = "reencrypt" [static]
Indicates that the SQLConnection.reencrypt() method was called. | SQLErrorOperation | ||
RELEASE_SAVEPOINT : String = "releaseSavepoint" [static]
Indicates that the SQLConnection.releaseSavepoint() method was called. | SQLErrorOperation | ||
ROLLBACK : String = "rollback" [static]
Indicates that the SQLConnection.rollback() method was called. | SQLErrorOperation | ||
ROLLBACK_TO_SAVEPOINT : String = "rollbackToSavepoint" [static]
Indicates that the SQLConnection.rollbackToSavepoint() method was called. | SQLErrorOperation | ||
SCHEMA : String = "schema" [static]
Indicates that the SQLConnection.loadSchema() method was called. | SQLErrorOperation | ||
SET_SAVEPOINT : String = "setSavepoint" [static]
Indicates that the SQLConnection.setSavepoint() method was called. | SQLErrorOperation |
ANALYZE | Constant |
public static const ANALYZE:String = "analyze"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.analyze()
method was called.
Related API Elements
ATTACH | Constant |
public static const ATTACH:String = "attach"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.attach()
method was called.
Related API Elements
BEGIN | Constant |
public static const BEGIN:String = "begin"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.begin()
method was called.
Related API Elements
CLOSE | Constant |
public static const CLOSE:String = "close"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.close()
method was called.
Related API Elements
COMMIT | Constant |
public static const COMMIT:String = "commit"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.commit()
method was called.
Related API Elements
COMPACT | Constant |
public static const COMPACT:String = "compact"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.compact()
method was called.
Related API Elements
DEANALYZE | Constant |
public static const DEANALYZE:String = "deanalyze"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.deanalyze()
method was called.
Related API Elements
DETACH | Constant |
public static const DETACH:String = "detach"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.detach()
method was called.
Related API Elements
EXECUTE | Constant |
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.
Related API Elements
OPEN | Constant |
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.
Related API Elements
REENCRYPT | Constant |
public static const REENCRYPT:String = "reencrypt"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.5 |
Indicates that the SQLConnection.reencrypt()
method was called.
Related API Elements
RELEASE_SAVEPOINT | Constant |
public static const RELEASE_SAVEPOINT:String = "releaseSavepoint"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 2 |
Indicates that the SQLConnection.releaseSavepoint()
method was called.
Related API Elements
ROLLBACK | Constant |
public static const ROLLBACK:String = "rollback"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.rollback()
method was called.
Related API Elements
ROLLBACK_TO_SAVEPOINT | Constant |
public static const ROLLBACK_TO_SAVEPOINT:String = "rollbackToSavepoint"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 2 |
Indicates that the SQLConnection.rollbackToSavepoint()
method was called.
Related API Elements
SCHEMA | Constant |
public static const SCHEMA:String = "schema"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the SQLConnection.loadSchema()
method was called.
Related API Elements
SET_SAVEPOINT | Constant |
public static const SET_SAVEPOINT:String = "setSavepoint"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 2 |
Indicates that the SQLConnection.setSavepoint()
method was called.
Related API Elements
Mon Nov 28 2011, 06:48 AM -08:00