gpt4 book ai didi

php - 数据未保存在数据库 cakephp 中

转载 作者:行者123 更新时间:2023-11-29 19:56:34 25 4
gpt4 key购买 nike

我有一个包含以下字段的事件表:

enter image description here

我使用此代码在此表中插入数据:

$oneEvent = array(
'trainer_id' => $event['trainer_id'],
'formation_id' => $event['formation_id'],
'title' => $event['title'],
'start' => $event['start'][$i],
'end' => $event['end'][$i],
);
$success = $this->Event->save($oneEvent);
$events_id= $this->Event->inserted_ids;

当我运行此代码时,我得到 true 和插入元素的 ID(使用调试显示)

enter image description here

但是在数据库中我永远看不到这个字段!!!!当我在 phpmyadmin 中插入数据时,当此请求 INSERT INTO events(title,start, end, trainer_id, Formation_id) VALUES ('Départ B','2016-11-18 10:00:00','2016- 11-18 11:00:00','13','1') 成功了我不知道这里发生了什么!!?

最佳答案

我在调用 save() 函数后使用 $dataSource->commit(); 解决了问题

关于php - 数据未保存在数据库 cakephp 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40682346/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com