19 declare(strict_types=1);
34 if ($index < 0 || $index > count($this->colspecs)) {
54 foreach ($this->colspecs as $colspec) {
55 if (strcasecmp($columnname, $colspec->getName()) === 0) {
115 public function addArray(array $array,
bool $overwrite =
false): void
120 foreach ($array as $row) {
123 $columnNames = array_keys($row);
124 foreach ($columnNames as $columnName) {
130 $xmlRow->setValues($row);
137 $this->rows = array();
138 $this->colspecs = array();
143 return count($this->colspecs);
148 return count($this->rows);
157 throw new DomainException(
"Index too small or too big: " . $idx);
159 return $this->rows[$idx];
168 public function getValue(
int $rowIdx, $colIdx): string
170 $row = $this->
getRow($rowIdx);
172 if (!is_numeric($colIdx)) {
175 return $row->getValue($colIdx);
addArray(array $array, bool $overwrite=false)
Add table values.
Row Class for XMLResultSet.
addColumn(string $columnname)
create a new column with columnname and attach it to column list
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getColumnName(int $index)
getColSpecs()
return array of ilXMLResultSetColumn
getValue(int $rowIdx, $colIdx)
return column value at colidx and rowidx
Column Class for XMLResultSet.
getRow($idx)
return row for index idx
getIndexForColumn(string $columnname)
return index for column name
setArray(array $array)
Clear table value and sets them based on array.
hasColumn(string $columnname)
has column name
getRows()
return array of ilXMLResultSetRow
addRow(ilXMLResultSetRow $row)