The flash.data package contains classes used for working with Adobe AIR local SQL databases. Adobe AIR includes a SQL database engine that supports the creation and use of local databases from within AIR applications. For information about SQL language and data type support in the runtime, see the appendix SQL support in local databases.



Classes
 ClassDescription
 EncryptedLocalStore The EncryptedLocalStore class (ELS) provides an encrypted local storage mechanism that can be used as a small cache for an application's private data.
 SQLCollationType This class contains the constants that represent the possible values for the defaultCollationType parameter of the SQLColumnSchema constructor, as well as the SQLColumnSchema.defaultCollationType property.
 SQLColumnNameStyle This class contains the constants that represent the possible values for the SQLConnection.columnNameStyle property.
 SQLColumnSchema The SQLColumnSchema class provides information describing the characteristics of a specific column within a table in a database.
 SQLConnection A SQLConnection instance is used to manage the creation of and connection to local SQL database files (local databases).
 SQLIndexSchema A SQLIndexSchema instance provides information describing a specific index in a database.
 SQLMode This class contains the constants that represent the possible values for the openMode parameter of the SQLConnection.open() and SQLConnection.openAsync() methods.
 SQLResult The SQLResult class provides access to data returned in response to the execution of a SQL statement (a SQLStatement instance).
 SQLSchema The SQLSchema class is the base class for schema information for database objects such as tables, views, and indices.
 SQLSchemaResult A SQLSchemaResult instance contains the information resulting from a call to the SQLConnection.loadSchema() method.
 SQLStatement A SQLStatement instance is used to execute a SQL statement against a local SQL database that is open through a SQLConnection instance.
 SQLTableSchema A SQLTableSchema instance provides information describing a specific table in a database.
 SQLTransactionLockType This class contains the constants that represent the possible values for the option parameter of the SQLConnection.begin() method.
 SQLTriggerSchema A SQLTriggerSchema instance provides information describing a specific trigger in a database.
 SQLViewSchema A SQLViewSchema instance provides information describing a specific view in a database.