Pacoteflash.data
Classepublic class SQLTriggerSchema
HerançaSQLTriggerSchema Inheritance SQLSchema Inheritance Object

A SQLTriggerSchema instance provides information describing a specific trigger in a database. It contains the name of the trigger (the name property), the name of the associated table (the table property), and the SQL statement used to create the trigger (the sql property).

Veja também

flash.data.SQLConnection.loadSchema()


Propriedades Públicas
 PropriedadeDefinido por
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheriteddatabase : String
[read-only] The name of the database to which this schema object belongs.
SQLSchema
 Inheritedname : String
[read-only] The name of this schema object.
SQLSchema
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
 Inheritedsql : String
[read-only] Returns the entire text of the SQL statement that was used to create this schema object.
SQLSchema
  table : String
[read-only] The name of the table on which this trigger is defined, or the name of the view if the trigger is defined on a view.
SQLTriggerSchema
Métodos Públicos
 MétodoDefinido por
  
SQLTriggerSchema(database:String, name:String, sql:String, table:String)
Creates a SQLTriggerSchema instance.
SQLTriggerSchema
 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
Detalhes da propriedade
tablepropriedade
table:String  [read-only]

The name of the table on which this trigger is defined, or the name of the view if the trigger is defined on a view.


Implementação
    public function get table():String
Detalhes do construtor
SQLTriggerSchema()Construtor
public function SQLTriggerSchema(database:String, name:String, sql:String, table:String)

Creates a SQLTriggerSchema instance. Generally, developers do not call the SQLTriggerSchema constructor directly. To retrieve a SQLTriggerSchema instance describing a particular database trigger, call the SQLConnection.getSchemaResult() method.

Parâmetros
database:String — The name of the associated database.
 
name:String — The name of the trigger.
 
sql:String — The SQL used to create the trigger.
 
table:String — The name of the trigger's associated table.