Adobe® AIR® API Reference for HTML Developers
Home  |  Show Classes List |  Index  |  Appendixes

Language Reference only       
SQLMode 
window.runtime propertywindow.runtime.flash.data.SQLMode
InheritanceSQLMode Inheritance Object

Runtime Versions:  1.0

This class contains the constants that represent the possible values for the openMode parameter of the SQLConnection.open() and SQLConnection.openAsync() methods.

See also



Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
Public Methods
 MethodDefined By
 Inherited
hasOwnProperty(name:String):Boolean
Indicates whether an object has a specified property defined.
Object
 Inherited
isPrototypeOf(theClass:Object):Boolean
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
propertyIsEnumerable(name:String):Boolean
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
setPropertyIsEnumerable(name:String, isEnum:Boolean = true):void
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
toLocaleString():String
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
toString():String
Returns the string representation of the specified object.
Object
 Inherited
valueOf():Object
Returns the primitive value of the specified object.
Object
Constants
 ConstantDefined 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
Constant Detail

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