It looks like you are using ActiveState Perl. If you are, use PPM to
install DBI and DBD::xxx. The instructions for it come with ActiveState
Perl.
--
Mac :})
** I normally forward private database questions to the DBI mail lists. **
Give a hobbit a fish and he'll eat fish for a day.
Give a hobbit a ring and he'll eat fish for an age.
----- Original Message -----
From: "Pei Du" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, June 07, 2001 16:27
Subject: install DBI problem
> QUICK START GUIDE:
>
> The DBI requires one or more 'driver' modules to talk to databases.
> Check that a DBD::* module exists for the database you wish to use.
> Read the DBI README then Build/test/install the DBI by doing
> perl Makefile.PL
> make
> make test
> make install
> Then delete the source directory tree since it's no longer needed.
> Use the 'perldoc DBI' command to read the DBI documentation.
> Fetch the DBD::* driver module you wish to use and unpack it.
> It is often important to read the driver README file carefully.
> Generally the build/test/install/delete sequence is the same
> as for the DBI module.
>
> I executed second step: make
>
> C:\Perl\5.005\bin>make
> make: Error -- No target
>
> C:\Perl\5.005\bin>make test
> make: Error -- Don't know how to make test
>
> C:\Perl\5.005\bin>make install
> make: Error -- Don't know how to make install
>
> How can I do?