Pacoteflash.data
Classepublic class SQLSchema
HerançaSQLSchema Inheritance Object
Subclasses SQLIndexSchema, SQLTableSchema, SQLTriggerSchema

The SQLSchema class is the base class for schema information for database objects such as tables, views, and indices.

Veja também

flash.data.SQLConnection.loadSchema()


Propriedades Públicas
 PropriedadeDefinido por
 Inheritedconstructor : 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
 Inheritedprototype : 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étodos Públicos
 MétodoDefinido por
  
SQLSchema(database:String, name:String, sql:String)
Creates a SQLSchema instance.
SQLSchema
 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 da propriedade
databasepropriedade
database:String  [read-only]

The name of the database to which this schema object belongs. The name is "main" for the main database associated with a SQLConnection instance (the database file that is opened by calling a SQLConnection instance's open() method). For other databases that are attached to the connection using the SQLConnection.attach() method, the value is the name specified in the attach() method call.


Implementação
    public function get database():String

Veja também

namepropriedade 
name:String  [read-only]

The name of this schema object. Each object within a database has a unique name. The name is defined in the SQL statement that creates the object (such as the CREATE TABLE statement for a table).

For exemplo, if a database index is created using the following SQL statement, the value of the name property for that index's schema would be "customer_index":

CREATE INDEX customer_index ON customers (id)


Implementação
    public function get name():String
sqlpropriedade 
sql:String  [read-only]

Returns the entire text of the SQL statement that was used to create this schema object. Each object within a database is created using a SQL statement.

For exemplo, if a database index is created using the following SQL:

CREATE INDEX customer_index ON customers (id)

the sql property for that index's schema would be the entire text of the statement.


Implementação
    public function get sql():String
Detalhes do construtor
SQLSchema()Construtor
public function SQLSchema(database:String, name:String, sql:String)

Creates a SQLSchema instance.

Parâmetros
database:String — The name of the associated database.
 
name:String — The name of the database object.
 
sql:String — The SQL used to construct the database object.