| Pacote | flash.data |
| Classe | public class SQLTableSchema |
| Herança | SQLTableSchema SQLSchema Object |
| Subclasses | SQLViewSchema |
name property), the
SQL statement used to create the table (the sql property) and
information about the table's columns (the columns property).
Veja também
| Propriedade | Definido por | ||
|---|---|---|---|
| columns : Array
[read-only]
An array of SQLColumnSchema instances containing schema information for this table's columns.
| SQLTableSchema | ||
![]() | 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 | |
| Método | Definido por | ||
|---|---|---|---|
|
Creates a SQLTableSchema instance.
| SQLTableSchema | ||
![]() |
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 | |
| columns | propriedade |
columns:Array [read-only]
An array of SQLColumnSchema instances containing schema information for this table's columns.
If the SQlConnection.loadSchema() call indicates that column information
should be excluded from the result, the columns property is an empty array
(an array whose length property is 0).
public function get columns():Array
Veja também
| SQLTableSchema | () | Construtor |
public function SQLTableSchema(database:String, name:String, sql:String, columns:Array)
Creates a SQLTableSchema instance. Generally, developers do not call the SQLTableSchema
constructor directly. To retrieve a SQLTableSchema instance describing a particular
database table, call the SQLConnection.getSchemaResult() method.
database:String — The name of the associated database.
|
|
name:String — The name of the table.
|
|
sql:String — The SQL statement used to create the table.
|
|
columns:Array — Array of SQLColumnSchema instances describing this table's columns.
|
Veja também