RE: Connecting MS Access Database with DBI

2002-12-03 Thread Timothy Johnson
: Thomas A. Lowery [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 7:50 PM To: [EMAIL PROTECTED] Subject: Re: Connecting MS Access Database with DBI On Mon, Dec 02, 2002 at 09:37:58PM -0600, jad wrote: I have Active State Perl 5.6. I've used PPM install DBI. I'm using this code: Did

Re: Connecting MS Access Database with DBI

2002-12-03 Thread Tim Bunce
] Subject: Re: Connecting MS Access Database with DBI On Mon, Dec 02, 2002 at 09:37:58PM -0600, jad wrote: I have Active State Perl 5.6. I've used PPM install DBI. I'm using this code: Did you install DBD-ODBC? # # Perl script that talks with the Northwinds database using

RE: Connecting MS Access Database with DBI

2002-12-03 Thread Jeff Urlwin
You never actually use your DataBase Driver, so DBI has no idea how to do what you've asked. I think this is what the error message is trying to tell you. Try installing DBD::ODBC and then putting the line use DBD::ODBC at the top of your script after use DBI. No...No...no, not

RE: Connecting MS Access Database with DBI

2002-12-03 Thread Timothy Johnson
I stand corrected. -Original Message- From: Jeff Urlwin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 6:58 AM To: 'Timothy Johnson'; 'Thomas A. Lowery'; [EMAIL PROTECTED] Subject: RE: Connecting MS Access Database with DBI You never actually use your DataBase Driver

Connecting MS Access Database with DBI

2002-12-02 Thread jad
I have Active State Perl 5.6. I've used PPM install DBI. I'm using this code: # # Perl script that talks with the Northwinds database using an # ODBC DSN of Northwind. # use DBI; use Data::Dumper; my $dbh = DBI-connect( dbi:ODBC:Northwind, Admin, , {RaiseError = 1, PrintError = 1,

Re: Connecting MS Access Database with DBI

2002-12-02 Thread Thomas A. Lowery
On Mon, Dec 02, 2002 at 09:37:58PM -0600, jad wrote: I have Active State Perl 5.6. I've used PPM install DBI. I'm using this code: Did you install DBD-ODBC? # # Perl script that talks with the Northwinds database using an # ODBC DSN of Northwind. # use DBI; use Data::Dumper; my