Install ActivePerl 5.6.0 or later. You can use the ActivePerl installer to install Perl and configure your computer. You do not need to recompile Perl.
Install Microsoft Visual C++ or Microsoft Visual Studio .NET and configure your environment.
If you did not choose to configure your environment at install time, you must set your PATH, LIB, and INCLUDE environment variables correctly before proceeding. Microsoft provides a batch file for this purpose. For example, a batch file called vcvars32.bat is included in the Vc7\bin subdirectory of the Visual Studio .NET 2003 installation. Open a new system command prompt and run this batch file before continuing.
At a command prompt, change to the bin subdirectory of your ActivePerl installation directory.
The system command prompt is strongly recommended as the following steps may not work from alternative shells.
Start the Perl Module Manager by executing the following command.
ppm
If ppm fails to start, check that Perl is installed correctly.
Enter the following command at the ppm prompt.
query dbi
This command should generate two lines of text similar to those shown below. In this case, the information indicates that ActivePerl version 5.8.1 build 807 is running and that DBI version 1.38 is installed.
Querying target 1 (ActivePerl 5.8.1.807) 1. DBI [1.38] Database independent interface for Perl
If DBI is not installed, you must install it. To do so, enter the following command at the ppm prompt.
install dbi
Exit from the Perl Module Manager by executing the following command.
exit
At a system command prompt, change to the src\perl subdirectory of your SQL Anywhere installation.
Enter the following commands to build and test DBD::SQLAnywhere.
perl Makefile.PL nmake
If for any reason you need to start over, you can run the command make clean to remove any partially built targets.
To test DBD::SQLAnywhere, copy the sample database file to your src\perl directory and make the tests.
copy "samples-dir\demo.db" .
For information about the default location of samples-dir, see Samples directory.
dbeng10 demo nmake test
If the tests do not run, ensure that the win32 subdirectory of the SQL Anywhere installation is in your path.
To complete the installation, execute the following command at the same prompt.
nmake install
The DBD::SQLAnywhere interface is now ready to use.