Filemaker PHP API 日期范围查找
例如,我试图从我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在显示结果之前,请务必检查是否有错误。
如果 $notFound = true 那么你可以显示一些其他消息。
Be sure to check for an error before you show the results.
If $notFound = true then you could display some other message.