Packagecom.hippohx.sqlite
Classpublic class ResultSet

A ResultSet object is returned by every call to Connection.request() call. This is a partial implementation of the original haXe ResultSet class.



Public Properties
 PropertyDefined by
  length : int
Number of elements of the result array.
ResultSet
  nfields : int
N/A.
ResultSet
  results : Array
Array of Dynamic objects brought by the query.
ResultSet
Public Methods
 MethodDefined by
  
Do NOT call the constructor directly, get a ResultSet instance by calling Connection.request() instead.
ResultSet
Property detail
lengthproperty
public var length:int

Number of elements of the result array. In the case of an UPDATE request, the length with tell the number of rows modified.

nfieldsproperty 
public var nfields:int

N/A.

resultsproperty 
public var results:Array

Array of Dynamic objects brought by the query.

Constructor detail
ResultSet()constructor
public function ResultSet()

Do NOT call the constructor directly, get a ResultSet instance by calling Connection.request() instead.

See also