(Beta)
Package | flash.data |
Class | public class SQLViewSchema |
Inheritance | SQLViewSchema SQLTableSchema SQLSchema Object |
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
name
property), the
SQL statement used to create the view (the sql
property), and
information about the view's columns (the columns
property).
To obtain view schema information for a database, use the
SQLConnection.loadSchema()
method to load the schema information, making certain to
use null
or SQLViewSchema
for the type
argument's value.
In the resulting SQLSchemaResult instance, the views
property contains an array
of SQLViewSchema instances representing the views in the database.
Generally, developer code does not construct SQLViewSchema instances directly.
Related API Elements
Public Properties
Public Methods
Method | Defined By | ||
---|---|---|---|
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 this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
Returns the primitive value of the specified object. | Object |
Constructor Detail
SQLViewSchema | () | Constructor |
public function SQLViewSchema(database:String, name:String, sql:String, columns:Array)
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Creates a SQLViewSchema instance. Generally, developer code does not call the SQLViewSchema
constructor directly. To obtain schema information for a database, call the
SQLConnection.loadSchema()
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.
|
Wed Nov 21 2018, 06:34 AM -08:00