本文整理汇总了PHP中ORM::get_dbcnx方法的典型用法代码示例。如果您正苦于以下问题:PHP ORM::get_dbcnx方法的具体用法?PHP ORM::get_dbcnx怎么用?PHP ORM::get_dbcnx使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ORM
的用法示例。
在下文中一共展示了ORM::get_dbcnx方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: delete
public function delete()
{
unlink(realpath($this->path));
$dbcnx = ORM::get_dbcnx();
$q = 'update ' . $this->table . ' set deleted = 1 where id = :' . $this->id_column;
$stmt = $dbcnx->prepare($q);
$stmt->execute(array(':' . $this->id_column => $this->data['id']));
}
示例2: save
public function save($do_validate = true)
{
if ($do_validate && !$this->validate()) {
return false;
}
$dbcnx = ORM::get_dbcnx();
$columns = array_diff(array_keys($this->attr), array($this->id_column));
foreach ($columns as $col) {
$values[':' . $col] = $this->data[$col];
}
if ($this->data[$this->id_column] === null) {
$q = 'insert into ' . $this->table . ' (' . join(', ', $columns) . ') VALUES (' . join(', ', array_keys($values)) . ')';
} else {
$values[':' . $this->id_column] = $this->data[$this->id_column];
$q = 'update ' . $this->table . ' set ';
foreach ($columns as $col) {
$q .= $col . ' = :' . $col . ',';
}
$q = substr($q, 0, -1) . ' where ' . $this->id_column . ' = :' . $this->id_column;
}
$stmt = $dbcnx->prepare($q);
$stmt->execute($values);
return true;
}