如何在数据库中插入对象

发布于 2024-11-30 21:17:45 字数 455 浏览 0 评论 0原文

如何在 kohana 3 的数据库中插入对象?

我的代码是:

$application = DB::query(Database::SELECT,"SELECT * FROM application_settings WHERE 'id'  = 1")->as_object()->execute();
$application -> google_analytical = $_POST['google_txt'];
$application = DB::insert('application_settings',$application)->execute();
$this->template->inner->status_msg = "Record has been saved successfully";

我想将名为application的对象插入数据库。

How can I insert an object in database in kohana 3?

My code is:

$application = DB::query(Database::SELECT,"SELECT * FROM application_settings WHERE 'id'  = 1")->as_object()->execute();
$application -> google_analytical = $_POST['google_txt'];
$application = DB::insert('application_settings',$application)->execute();
$this->template->inner->status_msg = "Record has been saved successfully";

I want to insert the object named application into the database.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我不吻晚风 2024-12-07 21:17:45

DB::insert() 语法是:

DB::insert('application_settings', $application_columns)
   ->values($application_values)
   ->execute();

顺便说一下,为什么要 INSERT 新记录而不是 更新现有的吗?

DB::update('application_settings')
   ->set(array('google_analytical' => $_POST['google_txt']))
   ->where('id', '=', $application->id))
   ->execute();

UPD。您正在寻找单行,因此:

// insert it after DB::query() call
$application = current($application);

DB::insert() syntax is:

DB::insert('application_settings', $application_columns)
   ->values($application_values)
   ->execute();

By the way, why do you want to INSERT new record instead of UPDATEing an existing one?

DB::update('application_settings')
   ->set(array('google_analytical' => $_POST['google_txt']))
   ->where('id', '=', $application->id))
   ->execute();

UPD. You are looking for a single row, so:

// insert it after DB::query() call
$application = current($application);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文