Pacoteflash.data
Classepublic class SQLViewSchema
HerançaSQLViewSchema Inheritance SQLTableSchema Inheritance SQLSchema Inheritance Object

A SQLViewSchema instance provides information describing a specific view in a database. It contains the name of the view (the 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

flash.data.SQLConnection.loadSchema()
flash.data.SQLColumnSchema


Propriedades Públicas
 PropriedadeDefinido por
 Inheritedcolumns : Array
[read-only] An array of SQLColumnSchema instances containing schema information for this table's columns.
SQLTableSchema
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheriteddatabase : String
[read-only] The name of the database to which this schema object belongs.
SQLSchema
 Inheritedname : String
[read-only] The name of this schema object.
SQLSchema
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
 Inheritedsql : String
[read-only] Returns the entire text of the SQL statement that was used to create this schema object.
SQLSchema
Métodos Públicos
 MétodoDefinido por
  
SQLViewSchema(database:String, name:String, sql:String, columns:Array)
Creates a SQLViewSchema instance.
SQLViewSchema
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Detalhes do construtor
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.

Parâmetros
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.