Pacoteflash.errors
Classepublic class SQLErrorOperation
HerançaSQLErrorOperation Inheritance Object

This class contains the constants that represent the possible values for the SQLError.operation property. These values indicate the operation that was attempted, which caused the error to occur.

Each value represents one of the operations of the SQLConnection class or the SQLStatement class.

Veja também

flash.errors.SQLError.operation
flash.data.SQLConnection
flash.data.SQLStatement


Propriedades Públicas
 PropriedadeDefinido por
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
Métodos Públicos
 MétodoDefinido por
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Constantes públicas
 ConstanteDefinido por
  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
  CLEAN : String = "clean"
[static] Indicates that the SQLConnection.clean() 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
  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 the SQLConnection.open() method was called.
SQLErrorOperation
  PREPARE : String = "prepare"
[static] Indicates that the SQLStatement.prepare() method was called.
SQLErrorOperation
  RESET : String = "reset"
[static] Indicates that the SQLStatement.reset() method was called.
SQLErrorOperation
  ROLLBACK : String = "rollback"
[static] Indicates that the SQLConnection.rollback() method was called.
SQLErrorOperation
  SCHEMA : String = "schema"
[static] Indicates that the SQLConnection.loadSchema() method was called.
SQLErrorOperation
Detalhes da constante
ANALYZEConstante
public static const ANALYZE:String = "analyze"

Indicates that the SQLConnection.analyze() method was called.

Veja também

ATTACHConstante 
public static const ATTACH:String = "attach"

Indicates that the SQLConnection.attach() method was called.

Veja também

BEGINConstante 
public static const BEGIN:String = "begin"

Indicates that the SQLConnection.begin() method was called.

Veja também

CLEANConstante 
public static const CLEAN:String = "clean"

Indicates that the SQLConnection.clean() method was called.

Veja também

CLOSEConstante 
public static const CLOSE:String = "close"

Indicates that the SQLConnection.close() method was called.

Veja também

COMMITConstante 
public static const COMMIT:String = "commit"

Indicates that the SQLConnection.commit() method was called.

Veja também

DEANALYZEConstante 
public static const DEANALYZE:String = "deanalyze"

Indicates that the SQLConnection.deanalyze() method was called.

Veja também

DETACHConstante 
public static const DETACH:String = "detach"

Indicates that the SQLConnection.detach() method was called.

Veja também

EXECUTEConstante 
public static const EXECUTE:String = "execute"

Indicates that either the SQLStatement.execute() method or the SQLStatement.next() method was called.

Veja também

OPENConstante 
public static const OPEN:String = "open"

Indicates that the SQLConnection.open() method was called.

Veja também

PREPAREConstante 
public static const PREPARE:String = "prepare"

Indicates that the SQLStatement.prepare() method was called.

Veja também

RESETConstante 
public static const RESET:String = "reset"

Indicates that the SQLStatement.reset() method was called.

Veja também

ROLLBACKConstante 
public static const ROLLBACK:String = "rollback"

Indicates that the SQLConnection.rollback() method was called.

Veja também

SCHEMAConstante 
public static const SCHEMA:String = "schema"

Indicates that the SQLConnection.loadSchema() method was called.

Veja também