window.runtime property | window.runtime.flash.data.SQLMode |
Inheritance | SQLMode Object |
Runtime Versions: | 1.0 |
openMode
parameter of the SQLConnection.open()
and
SQLConnection.openAsync()
methods.
See also
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"
Runtime Versions: | 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.
See also
READ | Constant |
public static const READ:String = "read"
Runtime Versions: | 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.
See also
UPDATE | Constant |
public static const UPDATE:String = "update"
Runtime Versions: | 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.
See also
Thu Sep 29 2011, 02:34 AM -07:00