zhamao-framework/src/ZM/DB/InsertBody.php
2021-02-09 17:09:09 +08:00

34 lines
597 B
PHP

<?php
namespace ZM\DB;
use ZM\Exception\DbException;
class InsertBody
{
/**
* @var Table
*/
private $table;
private $row;
/**
* InsertBody constructor.
* @param Table $table
* @param $row
*/
public function __construct(Table $table, $row) {
$this->table = $table;
$this->row = $row;
}
/**
* @throws DbException
*/
public function save() {
DB::rawQuery('INSERT INTO ' . $this->table->getTableName() . ' VALUES (' . implode(',', array_fill(0, count($this->row), '?')) . ')', $this->row);
}
}