<<<<<<< variables.html Variables

Variables

Date and Time Variables

($Id: variables.html,v 1.26.2.2 2010/12/12 00:07:03 ryang Exp $)

By joel@aufrecht.org

======= Variables

Variables

Date and Time Variables

($Id: variables.html,v 1.26.2.2 2010/12/12 00:07:03 ryang Exp $)

By joel@aufrecht.org

>>>>>>> 1.28 OpenACS docs are written by the named authors, and may be edited by OpenACS documentation staff.

Starting with OpenACS 5.0 and the introduction of acs-lang, we recommend retrieving date/time information from the database in <<<<<<< variables.html ANSI format and then using lc_time_fmt to format it for display.

Example 12.1. Getting datetime from the database ANSI-style

db_multirow -extend { mydate_pretty } {
=======
    ANSI format and then using lc_time_fmt to format it for display.

Example 11.1. Getting datetime from the database ANSI-style

db_multirow -extend { mydate_pretty } {
>>>>>>> 1.28
    select to_char(mydate, 'YYYY-MM-DD HH24:MI:SS') as mydate_ansi,
          ...
    ...
} {
    set mydate_ansi [lc_time_system_to_conn $mydate_ansi]
    set mydate_pretty [lc_time_fmt $mydate_ansi "%x %X"]
}

View comments on this page at openacs.org