$Sir DateNS: Difference between revisions
Jump to navigation
Jump to search
(Automatically generated page update) |
m (misc cleanup) |
||
Line 2: | Line 2: | ||
<span class="pageSubtitle">Current date and time as number of seconds</span> | <span class="pageSubtitle">Current date and time as number of seconds</span> | ||
<p class="warn"><b>Note: </b> | <p class="warn"><b>Note: </b>Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent of $Sir_DateNS is <var>[[CurrentTimeSeconds (System function)|CurrentTimeSeconds]]</var>.</p> | ||
The <var>$Sir_DateNS</var> function has no arguments and returns the number of seconds since 1 January, 1900. | The <var>$Sir_DateNS</var> function has no arguments and returns the number of seconds since 1 January, 1900. | ||
Line 11: | Line 11: | ||
===Syntax terms=== | ===Syntax terms=== | ||
<table | <table> | ||
<tr><th>%num</th> | <tr><th>%num</th> | ||
<td> | <td>Set to the number of seconds from <code>1 Jan 1900 12:00 AM</code> to the current date and time. | ||
</td></tr> | </td></tr> | ||
</table> | </table> | ||
Line 19: | Line 19: | ||
==Usage notes== | ==Usage notes== | ||
<ul> | <ul> | ||
<li><var>$Sir_DateNS</var> has no error conditions. | <li><var>$Sir_DateNS</var> has no error conditions.</li> | ||
<li>Values returned by <var>$Sir_DateNS</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>Values returned by <var>$Sir_DateNS</var> will exceed the range that can be represented in a 4-byte integer, so you should probably avoid storing the value in a <code>BINARY</code> or <code>FLOAT4</code> field. </li> | ||
<li>To obtain the current date and time in a readable form, use <var>$Sir_Date</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 seconds to a readable form, use <var>$Sir_NS2Date</var>. | <li>To convert the number of seconds to a readable form, use <var>$Sir_NS2Date</var>.</li> | ||
</ul> | </ul> | ||
==Example== | ==Example== | ||
The following fragment will print the date and time 1 minute from the current time: | The following fragment will print the date and time 1 minute from the current time: | ||
<p class="code"> | <p class="code">Print $Sir_NS2Date($Sir_DateNS + 60, 'MM/DD/YY HH:MI:SS') | ||
</p> | </p> | ||
Line 43: | Line 43: | ||
<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>[ | <li>[[Media:Ul2krNew.pdf|Sir2000 User Language Tools]]</li> | ||
</ul> | </ul> | ||
[[Category:$Functions|$Sir_DateNS]] | [[Category:$Functions|$Sir_DateNS]] |
Revision as of 22:06, 6 October 2015
Current date and time as number of seconds
Note: Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent of $Sir_DateNS is CurrentTimeSeconds.
The $Sir_DateNS function has no arguments and returns the number of seconds since 1 January, 1900.
Syntax
%num = $Sir_DateNS
Syntax terms
%num | Set to the number of seconds from 1 Jan 1900 12:00 AM to the current date and time.
|
---|
Usage notes
- $Sir_DateNS has no error conditions.
- Values returned by $Sir_DateNS will exceed the range that can be represented in a 4-byte integer, so you should probably avoid storing the value in a
BINARY
orFLOAT4
field. - To obtain the current date and time in a readable form, use $Sir_Date.
- To convert the number of seconds to a readable form, use $Sir_NS2Date.
Example
The following fragment will print the date and time 1 minute from the current time:
Print $Sir_NS2Date($Sir_DateNS + 60, 'MM/DD/YY HH:MI:SS')