Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rmayer4

    Scroll bar in center of page w/o frames?

    hey, I'm just curious, as a general rule, I try to avoid frames, as if they were the plague, I just don't like the way(s) they react with browsers and stuff... but, the time has come that I want to put a scroll bar in the center of the page, like this: |-----------------------------------| |...
  2. rmayer4

    accessing MS Access using DBI on Linux box

    hey! I'm trying to connect to a database that was made in MS Access 2000 using the DBI and DBD modules for perl, and everything worked fine during testing (On a Win98 machine)... but now it's all moved onto a Linux machine, and it won't load the drivers! Do I need to point the ODBC driver to my...
  3. rmayer4

    Quickening and simplifying regex...

    oh, okay, thanks alot! does anyone know how to do this anyway, just so I know? I'm trying to learn reg exps... slow process...
  4. rmayer4

    Quickening and simplifying regex...

    hi! I have these four lines of code in a script: $sqry =~ s/'\w*/ /s; $sqry =~ s/"//g; $sqry =~ s/\s*//s; $sqry =~ s/\s*$//; They are in that sequence, and one right after the other (nothing between any of these four lines). I'm curious if it's possible to make this into just one line...
  5. rmayer4

    multiple database queries in one script, with DBI...?

    I'm pretty sure it's the amount of data... Access doesn't seem to want to send information from a "memo" field type, which can be apparently any length, so I have to use "text", which Access limits to 255 characters per field. So, I split all the information up into sections...
  6. rmayer4

    multiple database queries in one script, with DBI...?

    hey hey... I'm using DBI to query a MS Access database, to fill in the blanks in a template for a web site... The problem is that Access keeps throwing these "record too large" errors at me. I figured that if I could make two queries of half the information each, it would work, but I...
  7. rmayer4

    Problems getting MS Access info to print with DBI:ODBC

    Thanks for the advice, but the {'s were already closed (see the green part below)... I kept playin for a bunch, and I started adding and removing "my's" at random, and I found when I added 'my' to $row=$sth->fetchrow_hashref everything worked fine... #!C:/perl/bin/perl -w use...
  8. rmayer4

    Problems getting MS Access info to print with DBI:ODBC

    hey hey! I keep getting this error when I try to print the results of my database query: Global symbol "$row" requires explicit package name at script1.pl line 13. Global symbol "$row" requires explicit package name at script1.pl line 14. Global symbol "$row&quot...
  9. rmayer4

    use of DBI in templates...?

    I'm trying to make a template page that will take one row of information out of a ODBC database (MS Access), and use the values to create an html page to send to the user... I'd like the page sent to the user to be free of anything other than html (no javascript, etc.). is DBI a good choice in...

Part and Inventory Search

Back
Top