Difference between revisions of "Implementation of SDATETIME() command"

From ArcoWiki
Jump to: navigation, search
(Created page with "Implementation of the is a standard DMIS 5.2 command which return a string with date and time in the format 'YYYY/MM/DD HH:mm:SS.sss' The command is: SDATETIME() Refer t...")
 
Line 1: Line 1:
 
Implementation of the is a standard [[DMIS]] 5.2 command which return a string with date and time in the format 'YYYY/MM/DD HH:mm:SS.sss'
 
Implementation of the is a standard [[DMIS]] 5.2 command which return a string with date and time in the format 'YYYY/MM/DD HH:mm:SS.sss'
 
The command is:
 
The command is:
SDATETIME()
+
<code><span style="color: green; text-decoration: none;">$$Begin Example…</span><br/></code>
 +
::<code>DECL/CHAR,100,string_time</code>
 +
::<code>start_time = ASSIGN/SDATETIME()</code>
  
 
Refer to [[Calculating the elapsed time]] for further Example and details on this function.
 
Refer to [[Calculating the elapsed time]] for further Example and details on this function.
  
 
[[Category:ReadMe3.4.155]]
 
[[Category:ReadMe3.4.155]]

Revision as of 12:12, 21 September 2016

Implementation of the is a standard DMIS 5.2 command which return a string with date and time in the format 'YYYY/MM/DD HH:mm:SS.sss' The command is: $$Begin Example…

DECL/CHAR,100,string_time
start_time = ASSIGN/SDATETIME()

Refer to Calculating the elapsed time for further Example and details on this function.