Accessing a Microsoft Access Database

2001-10-22 Thread Mace, Richard
Hello all, I'm relatively new to the list, so I'm sorry if I'm going over old ground here ! I would like to use PERL to view information in a Microsoft Access Database and then use this information in other programs away from the Database. Trouble is, I'm slightly confused by all the information

MIME::Lite Query

2002-03-20 Thread Mace, Richard
Hello there, I'm using MIME::Lite to send E-mails out that are generated from a Perl script. I seem to be having problems with the date field. When I hard code a date into the message e.g. $msg = new MIME::Lite From=> $from, To => $to, Date=> 'W

RE: use Pg;

2003-04-01 Thread Mace, Richard
Hi, In Postgres, all non-quoted identifiers are converted to lower-case, unless they are quoted. e.g. SELECT * FROM MY_DATA_0; Error: my_date_0 does not exist try SELECT * FROM "MY_DATA_0"; or probably better, in future, use lowercase names, e.g. SELECT * FROM my_data_0; Rich. -Origin

cookies

2003-08-14 Thread Mace, Richard
I want to start using cookies to store user session information and build associated privileges on web pages. I'm starting as a complete novice in this field, has anyone else got off to a flyer using a book or web-site they can recommend? Any hints gratefully received, thanks, Richard.