DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Properties | Private Attributes | List of all members
Deveel.Data.Sql.Tables.SimpleRowEnumerator Class Reference
Inheritance diagram for Deveel.Data.Sql.Tables.SimpleRowEnumerator:

Public Member Functions

 SimpleRowEnumerator (ITable source)
 
void Dispose ()
 
bool MoveNext ()
 
void Reset ()
 

Properties

Row Current [get]
 
object IEnumerator. Current [get]
 

Private Attributes

readonly ITable source
 
int index = -1
 
int rowCount
 

Detailed Description

Definition at line 22 of file SimpleRowEnumerator.cs.

Constructor & Destructor Documentation

Deveel.Data.Sql.Tables.SimpleRowEnumerator.SimpleRowEnumerator ( ITable  source)
inline

Definition at line 27 of file SimpleRowEnumerator.cs.

27  {
28  if (source == null)
29  throw new ArgumentNullException("source");
30 
31  this.source = source;
33  }
int RowCount
Gets the total number of rows in the table.
Definition: ITable.cs:52

Member Function Documentation

void Deveel.Data.Sql.Tables.SimpleRowEnumerator.Dispose ( )
inline

Definition at line 35 of file SimpleRowEnumerator.cs.

35  {
36  }
bool Deveel.Data.Sql.Tables.SimpleRowEnumerator.MoveNext ( )
inline
void Deveel.Data.Sql.Tables.SimpleRowEnumerator.Reset ( )
inline

Definition at line 42 of file SimpleRowEnumerator.cs.

Member Data Documentation

int Deveel.Data.Sql.Tables.SimpleRowEnumerator.index = -1
private

Definition at line 24 of file SimpleRowEnumerator.cs.

int Deveel.Data.Sql.Tables.SimpleRowEnumerator.rowCount
private

Definition at line 25 of file SimpleRowEnumerator.cs.

readonly ITable Deveel.Data.Sql.Tables.SimpleRowEnumerator.source
private

Definition at line 23 of file SimpleRowEnumerator.cs.

Property Documentation

Row Deveel.Data.Sql.Tables.SimpleRowEnumerator.Current
get

Definition at line 47 of file SimpleRowEnumerator.cs.

object IEnumerator. Deveel.Data.Sql.Tables.SimpleRowEnumerator.Current
getprivate

Definition at line 51 of file SimpleRowEnumerator.cs.


The documentation for this class was generated from the following file: