Hi folks!<br><br>I&#39;m looking for a way to add dates to certain annotations. It should be implemented that it is search and sortable on the database level and not only application level. Is there something available for this purpose or would I create for example a struct like this:<br>
<br>result = XMLAnnotationI()<br>result.ns = RString(&#39;acapella.result&#39;)<br>result.textvalue = RString(&#39;&lt;xml&gt;&lt;result&gt;...&lt;/result&gt;&lt;/xml&gt;&#39;)<br>date = LongAnnotation()<br>date.ns = RString(&#39;user.utc_seconds&#39;)<br>
date.longValue = RLong(1000000) // some utc time expressed in seconds since 1.1.1970 - not the current time<br>result.linkAnnotation(date)<br><br>Thanks! Bernhard<br>