Ejemplo n.º 1
0
 /**
  * Utworz wiersz do tabeli
  * @param table tabela, do ktorej nalezy wiersz
  * @param values wartosci w wierszu, w takiej kolejnosci, jak nazwy kolumn
  * w tabeli
  */
 public TableRow(DatabaseTable table, IList<Object> values)
 {
     this.table = table;
     this.values = values;
     if (table.getColumnCount() != values.Count)
     {
         throw new IndexOutOfRangeException("table.getColumnCount() != values.size()");
     }
 }
Ejemplo n.º 2
0
 public void setResultSet(DatabaseTable table)
 {
     this.setResult(table.ToString());
 }