Kohana 3.0 ORM 哪里 - 和

发布于 2024-11-05 03:33:10 字数 404 浏览 1 评论 0原文

我想使用 KO3 ORM 进行相关查询,这意味着我想在 where 中有两个条件:

现在我有:

   public function get_free(){
            return $this->where('static_members_only','=',self::FREE);
    }

并且我想有:

   public function get_free(){
            return $this->where('static_members_only','=',self::FREE) AND (some other conditions)
    }

可能吗?

谢谢你!

i want to make a corelated query using KO3 ORM, meaning that i want to have two conditions in an where:

now i have:

   public function get_free(){
            return $this->where('static_members_only','=',self::FREE);
    }

and i would like to have:

   public function get_free(){
            return $this->where('static_members_only','=',self::FREE) AND (some other conditions)
    }

is it possible?

thank you!

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

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

发布评论

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

评论(2

木槿暧夏七纪年 2024-11-12 03:33:22

你能尝试一下:Kohana 的 where_open() 和 where_close() 方法吗?
我认为应该这样做。

can you try : Kohana's where_open() and where_close() methods ?
I think it should be done that way.

活雷疯 2024-11-12 03:33:21

and_where() 只是 where() 的代理,因此无论您选择使用哪个,都没有区别。所以

ORM::factory('model')
    ->where('something','=',$something)
    ->where('something_else','LIKE',$something_else)
    ->find_all();

会产生类似这样的结果:

SELECT models.* 
FROM models 
WHERE something = '$something' 
AND something_else LIKE '$something_else'

当然,所有变量都会被转义/准备好,所以你不必担心 sql 注入。

and_where() is just a proxy to where(), so there is no difference whichever you choose to use. So

ORM::factory('model')
    ->where('something','=',$something)
    ->where('something_else','LIKE',$something_else)
    ->find_all();

will produce something like:

SELECT models.* 
FROM models 
WHERE something = '$something' 
AND something_else LIKE '$something_else'

Of course, all vars will be escaped / prepared so you don't have to worry about sql injection.

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