| Pacote | flash.data |
| Classe | public class SQLIndexSchema |
| Herança | SQLIndexSchema SQLSchema Object |
table property), the
SQL statement used to create the index (the sql property) and
and the name of the index (the name property).
Veja também
| Propriedade | Definido por | ||
|---|---|---|---|
![]() | 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 to which this index is attached.
| SQLIndexSchema | ||
| Método | Definido por | ||
|---|---|---|---|
|
Creates a SQLIndexSchema instance.
| SQLIndexSchema | ||
![]() |
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 | |
| table | propriedade |
table:String [read-only] The name of the table to which this index is attached.
public function get table():String
| SQLIndexSchema | () | Construtor |
public function SQLIndexSchema(database:String, name:String, sql:String, table:String)
Creates a SQLIndexSchema instance. Generally, developers do not call the SQLIndexSchema
constructor directly. To retrieve a SQLIndexSchema instance describing a particular
database index, call the SQLConnection.getSchemaResult() method.
database:String — The name of the associated database.
|
|
name:String — The name of the index.
|
|
sql:String — The SQL statement used to create this index.
|
|
table:String — The name of the table to which this index is attached.
|
Veja também