Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0 |
This class contains the constants that represent the possible values for the
openMode
parameter of the
SQLConnection.open()
and
SQLConnection.openAsync()
methods.
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.
See also
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.
See also
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.
See also