| Pacote | flash.data |
| Classe | public class SQLSchemaResult |
| Herança | SQLSchemaResult Object |
SQLConnection.loadSchema() method. It contains four Array properties
that hold the requested schema data requested, based on the argument values
used when calling SQLConnection.loadSchema().
To retrieve the SQLSchemaResult instance for a SQLConnection.loadSchema()
call, call the SQLConnection instance's getSchemaResult() method.
Veja também
| Propriedade | Definido por | ||
|---|---|---|---|
![]() | constructor : Object
A reference to the class object or constructor function for a given object instance.
| Object | |
| indices : Array
[read-only]
An array of SQLIndexSchema instances requested in a call
to SQLConnection.loadSchema().
| SQLSchemaResult | ||
![]() | prototype : Object
[static]
A reference to the prototype object of a class or function object.
| Object | |
| tables : Array
[read-only]
An array of SQLTableSchema instances requested in a call
to SQLConnection.loadSchema().
| SQLSchemaResult | ||
| triggers : Array
[read-only]
An array of SQLTriggerSchema instances requested in a call
to SQLConnection.loadSchema().
| SQLSchemaResult | ||
| views : Array
[read-only]
An array of SQLViewSchema instances requested in a call
to SQLConnection.loadSchema().
| SQLSchemaResult | ||
| Método | Definido por | ||
|---|---|---|---|
|
Creates a SQLSchemaResult instance.
| SQLSchemaResult | ||
![]() |
Indicates whether an object has a specified property defined.
| Object | |
![]() |
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter.
| Object | |
![]() |
Indicates whether the specified property exists and is enumerable.
| Object | |
![]() |
Sets the availability of a dynamic property for loop operations.
| Object | |
![]() |
Returns the string representation of the specified object.
| Object | |
![]() |
Returns the primitive value of the specified object.
| Object | |
| indices | propriedade |
indices:Array [read-only]
An array of SQLIndexSchema instances requested in a call
to SQLConnection.loadSchema(). If the specified databases
do not contain any indices, or if the loadSchema() call
indicates that indices should be excluded from the result, the indices
property is an empty array (an array whose length property
is 0).
public function get indices():Array
Veja também
| tables | propriedade |
tables:Array [read-only]
An array of SQLTableSchema instances requested in a call
to SQLConnection.loadSchema(). If the specified databases
do not contain any tables, or if the loadSchema() call
indicates that tables should be excluded from the result, the tables
property is an empty array (an array whose length property
is 0).
public function get tables():Array
Veja também
| triggers | propriedade |
triggers:Array [read-only]
An array of SQLTriggerSchema instances requested in a call
to SQLConnection.loadSchema(). If the specified databases
do not contain any triggers, or if the loadSchema() call
indicates that triggers should be excluded from the result, the triggers
property is an empty array (an array whose length property
is 0).
public function get triggers():Array
Veja também
| views | propriedade |
views:Array [read-only]
An array of SQLViewSchema instances requested in a call
to SQLConnection.loadSchema(). If the specified databases
do not contain any views, or if the loadSchema() call
indicates that views should be excluded from the result, the views
property is an empty array (an array whose length property
is 0).
public function get views():Array
Veja também
| SQLSchemaResult | () | Construtor |
public function SQLSchemaResult(tables:Array, views:Array, indices:Array, triggers:Array)
Creates a SQLSchemaResult instance. Developers do not construct SQLSchemaResult
instances directly. The runtime creates a SQLSchemaResult instance in response
to a call to the SQLConnection.loadSchema() method.
tables:Array — An array of SQLTableSchema instances as specified in the loadSchema() request.
|
|
views:Array — An array of SQLViewSchema instances as specified in the loadSchema() request.
|
|
indices:Array — An array of SQLIndexSchema instances as specified in the loadSchema() request.
|
|
triggers:Array — An array of SQLTriggerSchema instances as specified in the loadSchema() request.
|
Veja também