Package | flash.data |
Class | public class SQLMode |
Inheritance | SQLMode Object |
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
openMode
parameter of the SQLConnection.open()
and
SQLConnection.openAsync()
methods.
Related API Elements
Property | Defined By | ||
---|---|---|---|
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object |
Method | Defined By | ||
---|---|---|---|
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 |
Constant | Defined By | ||
---|---|---|---|
CREATE : String = "create" [static]
Indicates that the connection is opened for updates, and a database
file is created if the specified file doesn't exist. | SQLMode | ||
READ : String = "read" [static]
Indicates that the connection is opened in read-only mode. | SQLMode | ||
UPDATE : String = "update" [static]
Indicates that the connection is opened for updates but a
new database file is not created if the specified file doesn't exist. | SQLMode |
CREATE | Constant |
public static const CREATE:String = "create"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the connection is opened for updates, and a database file is created if the specified file doesn't exist. In this mode reading and writing are allowed to the database. If the database does not exist one is created before the operation completes.
Related API Elements
READ | Constant |
public static const READ:String = "read"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the connection is opened in read-only mode. In this mode writes are not allowed to the database. If the database does not exist the open operation fails.
Related API Elements
UPDATE | Constant |
public static const UPDATE:String = "update"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
Indicates that the connection is opened for updates but a new database file is not created if the specified file doesn't exist. In this mode reading and writing are allowed to the database. If the database does not exist the open operation fails.
Related API Elements
Thu Dec 4 2014, 05:50 PM -08:00