我是一个学生,我们正在学习如何建立一个框架。我的老师给了我这句话 insert into $table default values returning id$table
. 我无法在mysql上运行它,因为子句返回。我们能用另一个子句或行来代替它吗?
代码:
public function __construct($id=null) {
$class = get_class($this);
$table = strtolower($class);
if ($id == null) {
$st = db()->prepare("insert into $table default values returning id$table");
$st->execute();
var_dump(db()->errorInfo());
$row = $st->fetch();
$field = "id".$table;
$this->$field = $row[$field];
谢谢
暂无答案!
目前还没有任何答案,快来回答吧!