can i do it with perl ?

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

  1. #1

    Default can i do it with perl ?


    I there,

    I need to write a web database application using
    perl, and i need a way that when the users logs into
    the system i download all the information regarding
    to the user to its local computer and make all the
    transaction locally. After that, when the user logs
    out of the system all the information and transaction
    that were made by that user are then updated to the
    database server. Can i do it with perl ?, which
    modules ?, thanks.

    __________________________________
    Do you Yahoo!?
    Yahoo! SiteBuilder - Free web site building tool. Try it!
    [url]http://webhosting.yahoo.com/ps/sb/[/url]
    Joe Echavarria Guest

  2. Similar Questions and Discussions

    1. Off Topic: Active Perl Native Windows / cygwin perl
      I have both activestate windows native perl installed and the default cygwin perl. How can I have the cygwin shell use the windows perl rather...
    2. Control a non-perl image viewer from perl script
      Below is a (non-finished) script that trys to run a linux viewer called eog (eye of gnome) in a script that will eventually allow me to power thru...
    3. Re : Installing CPAN Perl Modules with Activestate Perl 5. v5.8
      Hi, In the process of trying to get perl modules installed, I downloaded over 300 Activestate specific perl modules and they work fine (of the ones...
    4. Effeciency question - perl scripts v's perl exe's
      Max Adams wrote: The only existing Perl compiler is part of perl. Anything else is just a packager that puts a perl, required modules, and the...
    5. Designing Interfaces with Perl and Perl APIs
      Hi, I am a long date perl programmer, and from time to time, I am having the same trouble: - To design interfaces for a self contained...
  3. #2

    Default RE: can i do it with perl ?

    Joe Echavarria wrote:
    > I there,
    >
    > I need to write a web database application using
    > perl, and i need a way that when the users logs into
    > the system i download all the information regarding
    > to the user to its local computer and make all the
    > transaction locally. After that, when the user logs
    > out of the system all the information and transaction
    > that were made by that user are then updated to the
    > database server.
    Why does it need to work that way?
    > Can i do it with perl ?,
    Sure.
    > which modules ?, thanks.
    Too soon to say.

    Bob Showalter Guest

  4. #3

    Default Re: can i do it with perl ?

    > I there,
    Hi,
    > I need to write a web database application using
    > perl, and i need a way that when the users logs into
    > the system i download all the information regarding
    > to the user to its local computer and make all the
    > transaction locally. After that, when the user logs
    > out of the system all the information and transaction
    > that were made by that user are then updated to the
    > database server. Can i do it with perl ?, which
    > modules ?, thanks.
    Why does it have to be a web application?
    Or rather just a client/server thing?
    What Database?
    I didnt find a way to do the dishes yet, anything else I ever tried works in
    perl.

    Just give us some more info.
    Wolf

    Wolf Blaum Guest

  5. #4

    Default Re: can i do it with perl ?

    --As off Saturday, January 24, 2004 12:07 AM +0100, wolf blaum is
    alleged to have said:
    > I didnt find a way to do the dishes yet, anything else I ever tried
    > works in perl.
    --As for the rest, it is mine.

    I'm sure you could do something with LEGO::RCX and a Mindstorms kit...
    ;-)

    Daniel T. Staal

    ---------------------------------------------------------------
    This email copyright the author. Unless otherwise noted, you
    are expressly allowed to retransmit, quote, or otherwise use
    the contents for non-commercial purposes. This copyright will
    expire 5 years after the author's death, or in 30 years,
    whichever is longer, unless such a period is in excess of
    local copyright law.
    ---------------------------------------------------------------
    Daniel Staal Guest

  6. #5

    Default Re: can i do it with perl ?

    On Fri, 2004-01-23 at 18:07, wolf blaum wrote:
    > > I there,
    > Hi,
    > > I need to write a web database application using
    > > perl, and i need a way that when the users logs into
    > > the system i download all the information regarding
    > > to the user to its local computer and make all the
    > > transaction locally. After that, when the user logs
    > > out of the system all the information and transaction
    > > that were made by that user are then updated to the
    > > database server. Can i do it with perl ?, which
    > > modules ?, thanks.
    >
    > Why does it have to be a web application?
    > Or rather just a client/server thing?
    > What Database?
    > I didnt find a way to do the dishes yet, anything else I ever tried works in
    > perl.
    Give me a little bit of time with a soldering iron, some wire, and a
    laptop connected to your home network and your dishwasher and that can
    be rectified. :-D

    -Dan

    Dan Anderson Guest

  7. #6

    Default Re: can i do it with perl ?

    > Give me a little bit of time with a soldering iron, some wire, and a
    > laptop connected to your home network and your dishwasher and that can
    > be rectified. :-D
    I new that was a gentle list!
    I just dont have a dishwasher :(
    But given the traffic here I happily dont get much time to use dishes at all.

    Have a nice weekend, Wolf

    Wolf Blaum Guest

  8. #7

    Default Re: can i do it with perl ?

    On Fri, 23 Jan 2004, Joe Echavarria wrote:
    >
    > I there,
    >
    > I need to write a web database application using
    > perl, and i need a way that when the users logs into
    > the system i download all the information regarding
    > to the user to its local computer and make all the
    > transaction locally. After that, when the user logs
    > out of the system all the information and transaction
    > that were made by that user are then updated to the
    > database server. Can i do it with perl ?, which
    > modules ?, thanks.
    >
    Unless this is an "in house" application for internal business use, I'd
    suggest against it. The main reason is that you are downloading something
    to the user's computer. They may not like that very much at all! I know
    that if a web site wanted to put some application on my machine, I'd tell
    them to take a walk. If the visitors are on a company PC, they might not
    even be able to install your application on their system. I know that our
    PC people do _not_ allow any unauthorized software to be installed by the
    user. In fact, any software going onto a PC owned by our company _must_ be
    tested and approved by our "Integration Lab". The end-users do not have
    the authority to do any sort of installation.

    Also, if your software is written in Perl, you would be forcing the users
    of it to have Perl installed. This may or may not be true.

    And what DB are you considering? That would need to be installed as well.
    Along with the Perl bindings. Unless it was "integrated" with Perl.

    Now, suppose we get by all my objections. How would you "upload" the
    changed data? What if another person had changed the same datum? How do
    you guarantee the reliability of your data? What if the user's computer
    "dies" (blue screens)? What if the user simply does not "log off" of your
    application?

    I think this is going to be very difficult. Good luck to you!

    --
    Maranatha!
    John McKown

    John McKown Guest

  9. #8

    Default Re: can i do it with perl ?

    On Fri, 23 Jan 2004, Dan Anderson wrote:
    >
    > Give me a little bit of time with a soldering iron, some wire, and a
    > laptop connected to your home network and your dishwasher and that can
    > be rectified. :-D
    >
    > -Dan
    I don't think that the lady who comes in and does my dishes is going to
    let you anywhere near her with a soldering iron in your hand! <grin>

    --
    Maranatha!
    John McKown

    John McKown Guest

  10. #9

    Default Re: can i do it with perl ?

    On Fri, 2004-01-23 at 20:49, John McKown wrote:
    > On Fri, 23 Jan 2004, Dan Anderson wrote:
    >
    > >
    > > Give me a little bit of time with a soldering iron, some wire, and a
    > > laptop connected to your home network and your dishwasher and that can
    > > be rectified. :-D
    > >
    > > -Dan
    >
    > I don't think that the lady who comes in and does my dishes is going to
    > let you anywhere near her with a soldering iron in your hand! <grin>
    We are borg. You will be assimilated. Resistance is futile. <grin>

    -Dan

    Dan Anderson Guest

  11. #10

    Default Re: can i do it with perl ?


    On Jan 24, 2004, at 12:48 PM, Dan Anderson wrote:
    > On Fri, 2004-01-23 at 20:49, John McKown wrote:
    >> On Fri, 23 Jan 2004, Dan Anderson wrote:
    >>> Give me a little bit of time with a soldering iron, some wire, and a
    >>> laptop connected to your home network and your dishwasher and that
    >>> can
    >>> be rectified. :-D
    >>
    >> I don't think that the lady who comes in and does my dishes is going
    >> to
    >> let you anywhere near her with a soldering iron in your hand! <grin>
    >
    > We are borg. You will be assimilated. Resistance is futile. <grin>
    why does

    perldoc Cleaning::Woman

    cause my computer to go into a rage about the
    cleaning woman????[1]

    And do I need to take down the Satelite Dish first
    before trying to wash it???? Or can I put the whole
    house into the dishwasher....

    You know this with trying to be a Terran is
    clearly much tougher than the original briefing said...

    ciao
    drieux

    ---

    [1] cf: "Deadmen don't wear plaid" for those
    who may not be old enough to remember that Homage
    to Film Noir....

    Drieux Guest

  12. #11

    Default RE: can i do it with perl ?

    > I there,
    >
    Ello!
    > I need to write a web database application using
    > perl, and i need a way that when the users logs into
    > the system i download all the information regarding
    > to the user to its local computer and make all the
    > transaction locally. After that, when the user logs
    > out of the system all the information and transaction
    > that were made by that user are then updated to the
    > database server. Can i do it with perl ?, which
    > modules ?, thanks.
    Yes you can.
    Look at cpan for DBI (for database stuff) CGI (for handling form input)

    HTH

    Dmuey
    Dan Muey 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