Searched refs:idColumn (Results 1 – 6 of 6) sorted by relevance
| /plugin/struct/meta/ |
| H A D | AccessTable.php | 442 $idColumn = self::isTypePage($this->pid, $this->ts) ? 'pid' : 'rid'; 443 [$sql, $opt] = $this->buildGetDataSQL($idColumn); 496 protected function buildGetDataSQL($idColumn = 'pid') argument 504 $QB->addSelectColumn('DATA', $idColumn, strtoupper($idColumn)); 505 $QB->addGroupByStatement("DATA.$idColumn"); 518 "DATA.$idColumn = $tn.$idColumn AND DATA.rev = $tn.rev AND $tn.colref = $colref" 529 $pl = $QB->addValue($this->{$idColumn}); 530 $QB->filters()->whereAnd("DATA.$idColumn = $pl");
|
| H A D | AccessTableGlobal.php | 44 protected function buildGetDataSQL($idColumn = 'rid') argument 46 return parent::buildGetDataSQL($idColumn);
|
| /plugin/database2/ |
| D | media.php | 115 list( $dsn, $authSlot, $table, $column, $idColumn, $rowid, $pageID, 166 final public function getMedia( $column, $idColumn, $rowid ) argument 170 $idColumn = trim( $idColumn ); 174 !self::isValidName( $idColumn ) || !$rowid ) 180 ' WHERE ' . $idColumn . '=?' ); 319 $data = $db->getMedia( $column, $idColumn, $rowid );
|
| D | database2.php | 866 $idColumn = $this->getSingleNumericPrimaryKey(); 868 if ( $aclName && $idColumn ) 872 $this->table, $idColumn ); 955 $idColumn = $this->getSingleNumericPrimaryKey(); 1035 if ( $def['isColumn'] && ( $column != $idColumn ) ) 1082 if ( $column !== $idColumn ) 1098 if ( !( $record[$idColumn] = $this->nextID( $this->table, true ) ) ) 1107 $log = array( $record[$idColumn], 'insert' ); 1119 $idColumn ); 1121 $record[$idColumn] = $rowid; [all …]
|
| /plugin/struct/_test/mock/ |
| H A D | AccessTablePage.php | 13 public function buildGetDataSQL($idColumn = 'pid') argument 15 return parent::buildGetDataSQL($idColumn);
|
| H A D | AccessTableDataNoDB.php | 26 public function buildGetDataSQL($idColumn = 'pid') argument 28 return parent::buildGetDataSQL($idColumn);
|