Ask a Question related to PERL Beginners, Design and Development.

  1. #1

    Default Time::Format

    Since I added use Time::Format qw( %time } I get this error on any die
    statement or end of program.

    Everything runs fine and the program works fine it just dumps this at the
    end.

    Can't locate I18N/Langinfo.pm in @INC (@INC contains: C:/Perl/lib
    C:/Perl/site/lib .) at (eval 1) line 30, <DATA> line 1.
    ...propagated at C:\Documents and Settings\pdk\My Documents\perl
    code\customertracking\tracking.pl line 35, <CUST> line 45.

    Paul Kraus
    -----------------------
    PEL Supply Company
    Network Administrator
    -----------------------
    800 321-1264 Toll Free
    216 267-5775 Voice
    216 267-6176 Fax
    [url]www.pelsupply.com[/url]
    -----------------------


    Paul Kraus Guest

  2. Similar Questions and Discussions

    1. time format conversion
      Hi... I have this format 2003-12-01 18:46:20.0 And would like it to be 01-12-2003 18:46:20 I know it can be done vis string cuts and...
    2. Time format
      I got problem with getting $time for example like "22:01:34" to PostgreSQL database using function $time=date("H:i:s") in PHP script. The erros is...
    3. Time/Date format and changing time to GMT
      Hi All, Sorry if this is the wrong newsgroup to post into, on this topic, if so, please point me in the right direction..... Currently working...
    4. Format time
      Hello I'm trying to us the formatdatetime function to format US-time and it doesnt give me the seconds how to do that? 2002-02-02 06:00 AM ...
    5. Date/Time Format?
      No, not directly, you'd have to write your own proc / function. You could use this as a base: http://www.aspfaq.com/2460 So it might be...
  3. #2

    Default Re: Time::Format

    On Mon, 26 Jan 2004 14:57:35 -0500
    "Paul Kraus" <pkraus@pelsupply.com> wrote:
    > Since I added use Time::Format qw( %time } I get this error on any die
    > statement or end of program.
    >
    > Everything runs fine and the program works fine it just dumps this at the
    > end.
    >
    > Can't locate I18N/Langinfo.pm in @INC (@INC contains: C:/Perl/lib
    > C:/Perl/site/lib .) at (eval 1) line 30, <DATA> line 1.
    > ...propagated at C:\Documents and Settings\pdk\My Documents\perl
    > code\customertracking\tracking.pl line 35, <CUST> line 45.

    From perldoc Time::Format

    If the I18N::Langinfo module is available, Time::Format will return
    weekday and month names in the language appropriate for the current locale. If not, English names will be used


    So guess you dont have I18N::Langinfo installed



    --
    Owen

    Owen Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139