http://www.perlmonks.org?node_id=99137


in reply to Re3: Cross platform perl development
in thread Cross platform perl development

Do you mean simple PC?

Hardware wise, yes, but software wise, no... While MS products might seem cheap (Yearh right), to some home users, try equiping even a small organization with around 50 people with Win2K and Office pro licenses.. not a pleasent experience.

Furthermore... I reeeeally don't like access, for everyday I have used it, I have become more and more sure, that it is actually just minesweeper with a few added lines of code =)

...well maybe that was a bit harsh, i find access very adeqate (..hmm.. aparently my english spelling abilities have gone after just two beers) for some smaller jobs, but would rather not use it for anything so serious that I could not just as easily have used text files for the job.

Kasper

Replies are listed 'Best First'.
(pmas) Re: Cross platform perl development
by pmas (Hermit) on Jul 24, 2001 at 17:28 UTC
    I am afraid my point - "use Access if you have it already" on your Windows machines was not obvious enough. :(
    I do not agree about Access with you. It is excellent for first-time, inexperienced users, for casual access to data. I am not aware of any other DB interface (for the price) with so easy to use visual query builder, or "query by form". You cannot beat easiness of building SQL table JOINs visually.

    Sure enough, when you need to do more serious development, you are seduced to MS concepts, but can avoid it by using DBI, ODBC and perl. With DBI, perl, and little thinking , I may not care what database I am connected into.

    Access (== MS Jet database engine) has record locking and transactions as real databases have, which I doubt about text files... ;)

    And sure enough, if you do not need PC, and free *NIXish system is acceptable for users, just go ahead.

    Installed OS is not a "religious issue" for me. User needs to be comfortable with the OS selected, and luckily enough I can port my perl on almost any system (there was discussion about porting Perl to Palm PDA- can you believe that?).

    Obviously, if users like to try to equip 50 PCs with Linux and StarOffice, excellent - Micro$oft is rich enough. If I may not care about transactions - so mysql is enough, it's fine. I did not use Postgress DB, so I cannot recomment id. After many years using database PROGRESS and it's clever 4GL language, I am back to plain stupid SQL on ORACLE, and only perl makes this experience bearable... ;)

    And I am sure Access is more than minesweeper: Access can do transactions and rollback, but minesweeper cannot. :)

    Update: Full disclosure: I am using Access/ODBC connection to ORACLE database to check how my CGI scripts are working. I found it easier - because I know it already...:)

    pmas
    To make errors is human. But to make million errors per second, you need a computer.

      Access can do rollbacks? How? Are you sure you're using the "free" MS Jet dll that comes installed when you install ODBC datasources (i'm pretty sure that one doesn't support rollbacks, or i'm not using it correctly - doubtful;))?
        I do not have my (VisualBasic) code around me right now, but when looking into MS ACCESS Help: MS Jet SQL has TRANSACTION statement, ADO has RollBackTrans method, DAO has RollBack method.

        Now, this is WOT: DAO methods of MS VisualBasic, here?.. ;o)

        pmas
        To make errors is human. But to make million errors per second, you need a computer.

      Hi pmas,
      I did get your point about "use Access if you have it already". My point was just that unfortunatly we can't rely on our budget users allready having access.

      I also totally agree with you about access being a very good choice for inexperienced users. However, being tied into a gui can be quite anoying at times.. just like a unix prompt is so much more powerfull than the windows explorer... if you know what you are doing that is =)

      there was discussion about porting Perl to Palm PDA- can you believe that?

      Yeps... I'm actually running Perl on my Psion 5mx... works very smoothly! =)

      Kasper

        I fired up google.com and found: FREE StarOffice from Sun for Linux, and compatible with M$ Office: like Word, Excell, PowerPoint, and even ADO/ODBC database. I was impressed. No more reasons to buy M$ Office if you can handle Linux.

        HTH -- even if it is wildly OT? Or anything helping to smash Evil Empire is on topic? ;)

        pmas
        To make errors is human. But to make million errors per second, you need a computer.