window.runtime property | window.runtime.flash.data.SQLTriggerSchema |
Inheritance | SQLTriggerSchema SQLSchema Object |
Runtime Versions: | 1.0 |
name
property),
the name of the associated table (the table
property), and the
SQL statement used to create the trigger (the sql
property).
To obtain trigger schema information for a database, use the
SQLConnection.loadSchema()
method to load the schema information, making certain to
use null
or SQLTriggerSchema
for the type
argument's value.
In the resulting SQLSchemaResult instance, the triggers
property contains an array
of SQLTriggerSchema instances representing the triggers in the database.
Generally, developer code does not construct SQLTriggerSchema instances directly.
See also
Property | Defined By | ||
---|---|---|---|
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
database : String [read-only]
The name of the database to which this schema object belongs. | SQLSchema | ||
name : String [read-only]
The name of this schema object. | SQLSchema | ||
prototype : Object [static]
A reference to the prototype object of a class or function object. | Object | ||
sql : 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 |
Method | Defined By | ||
---|---|---|---|
SQLTriggerSchema(database:String, name:String, sql:String, table:String)
Creates a SQLTriggerSchema instance. | SQLTriggerSchema | ||
hasOwnProperty(name:String):Boolean
Indicates whether an object has a specified property defined. | Object | ||
isPrototypeOf(theClass:Object):Boolean
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
propertyIsEnumerable(name:String):Boolean
Indicates whether the specified property exists and is enumerable. | Object | ||
setPropertyIsEnumerable(name:String, isEnum:Boolean = true):void
Sets the availability of a dynamic property for loop operations. | Object | ||
toLocaleString():String
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
toString():String
Returns the string representation of the specified object. | Object | ||
valueOf():Object
Returns the primitive value of the specified object. | Object |
table | property |
table:String
[read-only] Runtime Versions: | 1.0 |
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 | () | Constructor |
public function SQLTriggerSchema(database:String, name:String, sql:String, table:String)
Runtime Versions: | 1.0 |
Creates a SQLTriggerSchema instance. Generally, developer code does not call the SQLTriggerSchema
constructor directly. To obtain schema information for a database, call the
SQLConnection.loadSchema()
method.
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.
|
Thu Sep 29 2011, 02:34 AM -07:00