Filemaker PHP API 日期范围查找

发布于 2024-11-18 03:14:56 字数 294 浏览 6 评论 0原文

例如,我试图从我的 Filemaker DB 中查找一组特定数据,

$fm = new FileMaker(****, ****, ****, ****);

$find = $fm->newFindCommand('MyLayout');

$find->addFindCriterion('Start_Date','07/01/2011');

$results = $find->execute();

这会返回我的布局中的所有数据,但不使用查找条件。

有什么想法吗?

I am trying to find a certain set of data from my Filemaker DB, for example

$fm = new FileMaker(****, ****, ****, ****);

$find = $fm->newFindCommand('MyLayout');

$find->addFindCriterion('Start_Date','07/01/2011');

$results = $find->execute();

This returns all of the data from my layout but does not use the find criterion.

any ideas?

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

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

发布评论

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

评论(1

醉梦枕江山 2024-11-25 03:14:56

在显示结果之前,请务必检查是否有错误。

如果 $notFound = true 那么你可以显示一些其他消息。

// check for an error in result
if (FileMaker::isError($results)) {
    if ($results->code != 401) {
      echo 'unable to find data: ' . $results->message . '(' . $results->code . ')';
      die();
    }
    else $notFound = true;
}

Be sure to check for an error before you show the results.

If $notFound = true then you could display some other message.

// check for an error in result
if (FileMaker::isError($results)) {
    if ($results->code != 401) {
      echo 'unable to find data: ' . $results->message . '(' . $results->code . ')';
      die();
    }
    else $notFound = true;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文