有没有办法在 Propel (ORM) 中使用 match against 语句?

发布于 2024-12-23 04:36:22 字数 66 浏览 1 评论 0原文

有没有办法在 Propel (ORM) 中使用 match against 语句?奇怪的是我找不到与此相关的任何内容。

Is there any way of using match against statement in Propel (ORM)? It is odd I cannot find anything related to this.

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

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

发布评论

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

评论(2

画骨成沙 2024-12-30 04:36:22

没有直接支持。也许是自定义查询?

$con = Propel::getConnection(BookPeer::DATABASE_NAME);
$sql = "SELECT title,category FROM articles WHERE MATCH(title,category) AGAINST (:text); 
$stmt = $con->prepare($sql);
$stmt->execute(array(':text' => 'My match text'));

No direct support. Perhaps a custom query?

$con = Propel::getConnection(BookPeer::DATABASE_NAME);
$sql = "SELECT title,category FROM articles WHERE MATCH(title,category) AGAINST (:text); 
$stmt = $con->prepare($sql);
$stmt->execute(array(':text' => 'My match text'));
墨洒年华 2024-12-30 04:36:22

至少在 Propel 1.7 中它可以与 where() 子句一起使用:

UserQuery::create()->where('MATCH('
. UserPeer::Name
. ') AGAINST(?)', $name)->find();

At least in Propel 1.7 it works with a where() clause:

UserQuery::create()->where('MATCH('
. UserPeer::Name
. ') AGAINST(?)', $name)->find();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文