Difference between revisions of "Implementation of SDATETIME() command"
From ArcoWiki
(3 intermediate revisions by one other user not shown) | |||
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'<br /> |
− | The command is: | + | The command is:<br /> |
+ | |||
<code><span style="color: green; text-decoration: none;">$$Begin Example…</span><br/></code> | <code><span style="color: green; text-decoration: none;">$$Begin Example…</span><br/></code> | ||
::<code>DECL/CHAR,100,string_time</code> | ::<code>DECL/CHAR,100,string_time</code> | ||
::<code>start_time = ASSIGN/SDATETIME()</code> | ::<code>start_time = ASSIGN/SDATETIME()</code> | ||
+ | <br /> | ||
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. | ||
+ | [[it:Implementazione del comando SDATETIME ()]] | ||
+ | [[zh-cn:执行SDATETIME()命令]] | ||
+ | [[pt:Implementação do comando SDATETIME ()]] | ||
+ | [[de:Implementierung des SDATETIME () Befehls]] | ||
+ | [[es:Implementación del comando SDATETIME ()]] | ||
+ | [[en:Implementation of SDATETIME() command]] | ||
+ | |||
+ | [[Category:Dmis_Tutorial]] | ||
[[Category:ReadMe3.4.155]] | [[Category:ReadMe3.4.155]] |
Latest revision as of 09:39, 7 June 2018
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.