public virtual int Fill(SQLiteOgamaDataSet.ShapeGroupsDataTable dataTable)
    {
      this.Adapter.SelectCommand = this.CommandCollection[0];
      if (this.ClearBeforeFill)
      {
        dataTable.Clear();
      }

      int returnValue = this.Adapter.Fill(dataTable);
      return returnValue;
    }