| Pacote | flash.data |
| Classe | public class SQLViewSchema |
| Herança | SQLViewSchema SQLTableSchema SQLSchema Object |
name property), the
SQL statement used to create the view (the sql property) and
information about the view's columns (the columns property).
Veja também
| Método | Definido por | ||
|---|---|---|---|
|
Creates a SQLViewSchema instance.
| SQLViewSchema | ||
![]() |
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 | |
| SQLViewSchema | () | Construtor |
public function SQLViewSchema(database:String, name:String, sql:String, columns:Array)
Creates a SQLViewSchema instance. Generally, developers do not call the SQLViewSchema
constructor directly. To retrieve a SQLViewSchema 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 view.
|
|
sql:String — The SQL statement used to create the view.
|
|
columns:Array — Array of SQLColumnSchema instances describing this view's columns.
|