$Sir DateNM: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
m (link repair)
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:
<span class="pageSubtitle">Current date and time as number of milliseconds</span>
<span class="pageSubtitle">Current date and time as number of milliseconds</span>


<p class="warn"><b>Note: </b>Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent of $Sir_DateNM is <var>[[CurrentTimeMilliseconds (System function)|CurrentTimeMilliseconds]]</var>.</p>
<p class="warn"><b>Note: </b>Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent of $Sir_DateNM is <var>[[CurrentTimeMilliseconds (System function)|CurrentTimeMilliseconds]]</var>.</p>


The <var>$Sir_DateNM</var> function has no arguments and returns the number of 1/1000th seconds since 1 January, 1900.
The <var>$Sir_DateNM</var> function has no arguments and returns the number of 1/1000th seconds since 1 January, 1900.
Line 11: Line 11:


===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table>
<tr><th>%num</th>
<tr><th>%num</th>
<td>set to the number of 1/1000th seconds (milliseconds) from 1 Jan 1900 12:00 AM to the current date and time.
<td>Set to the number of 1/1000th seconds (milliseconds) from <code>1 Jan 1900 12:00 AM</code> to the current date and time.</td></tr>
</td></tr>
</table>
</table>


==Usage notes==
==Usage notes==
<ul>
<ul>
<li><var>$Sir_DateNM</var> has no error conditions.  
<li><var>$Sir_DateNM</var> has no error conditions.</li>
<li>Values returned by <var>$Sir_DateNM</var> will exceed the range that can be represented in a 4-byte integer, so you should probably avoid storing the value in a BINARY or FLOAT4 field.  
<li>To obtain the current date and time in a readable form, use <var>$Sir_Date</var>.  
<li>Values returned by <var>$Sir_DateNM</var> will exceed the range that can be represented in a 4-byte integer, so you should probably avoid storing the value in a <var>BINARY</var> or <var>FLOAT4</var> field. </li>
<li>To convert the number of milliseconds to a readable form, use <var>$Sir_NM2Date</var>.
 
<li>To obtain the current date and time in a readable form, use <var>$Sir_Date</var>. </li>
 
<li>To convert the number of milliseconds to a readable form, use <var>$Sir_NM2Date</var>.</li>
</ul>
</ul>


==Example==
==Example==
The following fragment will print the date and time 1.8 seconds from the current time:
The following fragment will print the date and time 1.8 seconds from the current time:
<p class="code">PRINT $Sir_NM2Date($Sir_DateNM + 1800, 'MM/DD/YY HH:MI:SS.XX')
<p class="code">Print $Sir_NM2Date($Sir_DateNM + 1800, 'MM/DD/YY HH:MI:SS.XX')
</p>
</p>


Line 39: Line 41:
<li>[[Janus Web Server]]</li>
<li>[[Janus Web Server]]</li>
<li>Japanese functions</li>
<li>Japanese functions</li>
<li>[[Media:SirfieldNew.pdf|Sir2000 Field Migration Facility]</li>
<li>[[Media:SirfieldNew.pdf|Sir2000 Field Migration Facility]]</li>
<li>[http://m204wiki.rocketsoftware.com/images/d/d6/Ul2krNew.pdf Sir2000 User Language Tools]</li>
<li>[[Sir2000 User Language Tools]]</li>
</ul>
</ul>


[[Category:$Functions|$Sir_DateNM]]
[[Category:$Functions|$Sir_DateNM]]

Latest revision as of 22:51, 8 February 2018

Current date and time as number of milliseconds

Note: Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent of $Sir_DateNM is CurrentTimeMilliseconds.

The $Sir_DateNM function has no arguments and returns the number of 1/1000th seconds since 1 January, 1900.

Syntax

%num = $Sir_DateNM

Syntax terms

%num Set to the number of 1/1000th seconds (milliseconds) from 1 Jan 1900 12:00 AM to the current date and time.

Usage notes

  • $Sir_DateNM has no error conditions.
  • Values returned by $Sir_DateNM will exceed the range that can be represented in a 4-byte integer, so you should probably avoid storing the value in a BINARY or FLOAT4 field.
  • To obtain the current date and time in a readable form, use $Sir_Date.
  • To convert the number of milliseconds to a readable form, use $Sir_NM2Date.

Example

The following fragment will print the date and time 1.8 seconds from the current time:

Print $Sir_NM2Date($Sir_DateNM + 1800, 'MM/DD/YY HH:MI:SS.XX')

Products authorizing $Sir_DateNM