1
votes

Could someone please let me know whether it possible to find mails sent between a particular hour or minutes using FTSearch(Domino API).

For example, If a mail is sent from A to B at 5/27/2011 10:30, can we create a query for FTSearch to find out this mail wherein I give a query like between (5/27/2011 00:00 and 5/27/2011 13:45)

Does the Hour field and Minutes field have any effect on the FTSearch query? My application is coded in JAVA.

1
Ken was faster, so just a link to the documentation for using operators in the search query because it is somewhat hard to find. - Hristo

1 Answers

1
votes

Yes the FTSearch method can do that for you. Your query would look like this:

query = "[PostedDate] >= 5/27/2011 AND [PostedDate] < 5/28/2011"

Unfortunately it seems there's no way to specify times in the query, just dates.