本文整理汇总了PHP中Grid::primaryKey方法的典型用法代码示例。如果您正苦于以下问题:PHP Grid::primaryKey方法的具体用法?PHP Grid::primaryKey怎么用?PHP Grid::primaryKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Grid
的用法示例。
在下文中一共展示了Grid::primaryKey方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: scanForInsertId
protected function scanForInsertId(Grid $grid)
{
if (!$grid->isLoaded()) {
$primaryKey = $grid->primaryKey();
$foundKeyColumn = false;
if (is_array($primaryKey)) {
foreach ($primaryKey as $keyColumn) {
if (!$keyColumn->isGeneratedOnPublish() || $keyColumn->hasData()) {
continue;
}
$foundKeyColumn = $keyColumn;
break;
}
} else {
if ($primaryKey->isGeneratedOnPublish() && !$primaryKey->hasData()) {
$foundKeyColumn = $primaryKey;
}
}
if ($foundKeyColumn) {
$result = $this->query('SELECT SCOPE_IDENTITY() AS [LAST_INSERT_ID]');
if (!$result || mssql_num_rows($result) != 1) {
$this->throwException('Attempt to fetch last insert id value failed: ' . $this->error());
}
$dataRow = $this->fetch_row($result);
$foundKeyColumn->setData(array_shift($dataRow));
}
}
}
示例2: scanForInsertId
protected function scanForInsertId(Grid $grid)
{
if (!$grid->isLoaded()) {
$primaryKey = $grid->primaryKey();
$foundKeyColumn = false;
if (is_array($primaryKey)) {
foreach ($primaryKey as $keyColumn) {
if (!$keyColumn->isGeneratedOnPublish() || $keyColumn->hasData()) {
continue;
}
$foundKeyColumn = $keyColumn;
break;
}
} else {
if ($primaryKey->isGeneratedOnPublish() && !$primaryKey->hasData()) {
$foundKeyColumn = $primaryKey;
}
}
if ($foundKeyColumn && ($lastInsertId = sqlite_last_insert_rowid($this->getConnection()))) {
$foundKeyColumn->setData($lastInsertId);
}
}
}
示例3: scanForInsertId
protected function scanForInsertId(Grid $grid, $sequence, $next = true)
{
if (!$grid->isLoaded()) {
$primaryKey = $grid->primaryKey();
$foundKeyColumn = false;
if (is_array($primaryKey)) {
foreach ($primaryKey as $keyColumn) {
if (!$keyColumn->isGeneratedOnPublish() || $keyColumn->hasData()) {
continue;
}
$foundKeyColumn = $keyColumn;
break;
}
} else {
if ($primaryKey->isGeneratedOnPublish() && !$primaryKey->hasData()) {
$foundKeyColumn = $primaryKey;
}
}
if ($foundKeyColumn) {
$result = $this->query('SELECT ' . $this->escapeDataName($sequence) . '.' . $this->escapeDataName($next ? 'NEXTVAL' : 'CURRVAL') . ' ' . $this->asColumnOperator . ' ' . $this->escapeDataNameAlias('LAST_INSERT_ID') . ' FROM ' . $this->escapeDataName('DUAL'));
if (!is_resource($result)) {
$this->throwException('Attempt to fetch last insert id value failed: ' . $this->error());
}
$dataRow = $this->fetch_row($result);
$foundKeyColumn->setData(array_shift($dataRow));
}
}
}
示例4: scanForInsertId
protected function scanForInsertId(Grid $grid)
{
if (!$grid->isLoaded()) {
$primaryKey = $grid->primaryKey();
$foundKeyColumn = false;
if (is_array($primaryKey)) {
foreach ($primaryKey as $keyColumn) {
if (!$keyColumn->isGeneratedOnPublish() || $keyColumn->hasData()) {
continue;
}
$foundKeyColumn = $keyColumn;
break;
}
} else {
if ($primaryKey instanceof Column && $primaryKey->isGeneratedOnPublish() && !$primaryKey->hasData()) {
$foundKeyColumn = $primaryKey;
}
}
if ($foundKeyColumn && in_array($foundKeyColumn->getType(), array(Column::TYPE_FLOAT, Column::TYPE_INTEGER, Column::TYPE_UNSIGNED_INTEGER))) {
// Executing the query directly, since the mysql_insert_id() command casts the return
// value to c(long), and may truncate.
$result = $this->query('SELECT LAST_INSERT_ID()');
if (!$result || $this->num_rows($result) != 1) {
$this->throwException('Attempt to fetch last insert id value failed: ' . $this->error());
}
$dataRow = $this->fetch_row($result);
$foundKeyColumn->setData(array_shift($dataRow));
}
}
}