Ejemplo n.º 1
0
 // Performs a query and sets the current record/row pointer to the first one.
 public void Open(clsDatabase db, string sqlQuery)
 {
     mDataReader = db.ExecuteQuery(sqlQuery);
     MoveNext();
 }