home *** CD-ROM | disk | FTP | other *** search
Wrap
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE>ActivePerl faq9 - Modules and sample scripts</TITLE> <LINK rev="made" href="mailto:bjepson@debian.ids.net"> <META name="GENERATOR" charset="iso-8859-1" content="Microsoft FrontPage 4.0"> <META name="ProgId" content="FrontPage.Editor.Document"> <LINK rel="STYLESHEET" href="../../Active.css" type="text/css" media="screen"> </HEAD> <BODY bgcolor="#ffffff"> <TABLE border="0" cellpadding="0" cellspacing="0" width="100%"> <TR> <TD class="block" valign="MIDDLE" width="100%" bgcolor="#cccccc"><FONT size="+1"><STRONG> <P class="block"> ActivePerl FAQ</P> </STRONG></FONT></TD> </TR> </TABLE> <UL> <LI><A href="#NAME">NAME</A></LI> <LI><A href="#DESCRIPTION">DESCRIPTION</A> <UL> <LI><A href="#How_can_I_use_modules_from_CPAN_">How can I use modules from CPAN?</A></LI> <LI><A href="#Where_do_I_get_a_Win32_make">Where do I get make for Win32?</A></LI> <LI><A href="#How_do_I_access_databases_from_m">How do I access databases from my Perl script?</A></LI> <LI><A href="#Is_there_a_way_to_use_OLE_Automa">Is there a way to use OLE Automation servers from my Perl script?</A></LI> <LI><A href="#Is_there_a_way_to_access_Data_Ac">Is there a way to access Data Access Objects (DAO) from my Perl</A></LI> <LI><A href="#Can_I_send_Internet_mail_from_Pe">Can I send Internet mail from ActivePerl?</A></LI> <LI><A href="#Is_there_a_way_to_access_MAPI_fr">Is there a way to access MAPI from my Perl script?</A></LI> <LI><A href="#Is_there_a_DBM_implementation_av">Is there a DBM implementation available for ActivePerl?</A></LI> <LI><A href="#Is_there_a_way_to_do_GUI_program">Is there a way to do GUI programming with ActivePerl?</A></LI> <LI><A href="#Is_there_a_port_of_Oraperl_for_W">Is there a port of Oraperl for Win32?</A></LI> <LI><A href="#What_modules_come_with_the_Perl_">What modules come with the ActivePerl distribution?</A></LI> <LI><A href="#Where_can_I_find_other_modules_f">Where can I find other modules for ActivePerl?</A></LI> <LI><A href="#Is_there_a_GD_module_available_f">Is there a GD module available for ActivePerl?</A></LI> <LI><A href="#What_is_CPAN_and_how_do_I_use_it">What is CPAN and how do I use it?</A></LI> <LI><A href="#Is_there_a_library_to_read_or_wr">Is there a library to read or write Microsoft Office or other</A></LI> </UL> </LI> <LI><A href="#AUTHOR_AND_COPYRIGHT">AUTHOR AND COPYRIGHT</A></LI> </UL> <HR> <H1><A name="NAME">NAME</A></H1> <P>ActivePerl faq9 - Modules and sample scripts</P> <HR> <H1><A name="DESCRIPTION">DESCRIPTION</A></H1> <HR> <H2><A name="How_can_I_use_modules_from_CPAN_">How can I use modules from CPAN?</A></H2> <P>As of version 5.005, ActivePerl supports the MakeMaker utility. This allows you to install modules from <FONT size="-1">CPAN,</FONT> but requires you to have a make utility, such as nmake or dmake. Modules are generally distributed in gzipped tar files, such as <EM>Data-Dumper-2.08.tar.gz</EM>.</P> <P>However, ActivePerl includes the Perl Package Manager <FONT size="-1">(PPM),</FONT> a utility that allows you to install modules, including modules that contain binary extensions. You should consider using <FONT size="-1">PPM</FONT> to install a module, as this greatly simplifies the management of modules.</P> <P>Nevertheless, there are times when it is necessary to build a module from source. Typically, an installation session goes something like this:</P> <OL> <LI><STRONG><A name="item_"></A></STRONG> <P>Extract the module. This creates a directory based on the name of the archive.</P> <PRE> gzip -d -c Data-Dumper-2.08.tar.gz | tar xvf - </PRE> </LI> <LI> <P>Change directory to the module's directory.</P> <PRE> cd Data-Dumper-2.08 </PRE> </LI> <LI> <P>Consult the <FONT size="-1">README</FONT> file.</P> <PRE> more < README </PRE> </LI> <LI> <P>Run the <EM>Makefile.PL</EM> script. This uses the MakeMaker module to build a makefile you can build the extension with.</P> <PRE> perl Makefile.PL </PRE> </LI> <LI> <P>Run your make utility. This prepares the module for installation, and compiles any extension if one is present.</P> <PRE> nmake </PRE> </LI> <LI> <P>If this module has tests, run them.</P> <PRE> nmake test </PRE> </LI> <LI> <P>If the tests succeeded, install the module.</P> <PRE> nmake install </PRE> </LI> </OL> <P>See <A href="ActivePerl-Winfaq4.html#Where_can_I_find_Win32_ports_of_">Where can I find Win32 ports of UNIX tools?</A> for information on the availability of tools like gzip and tar.</P> <HR> <H2><A name="Where_do_I_get_a_Win32_make">Where do I get make for Win32?</A></H2> <DL> <DT><STRONG><A name="item_nmake">nmake</A></STRONG></DT> <DD> <P>nmake is a 'make' like program for Win32 systems by Microsoft. It is available from <A href="ftp://ftp.microsoft.com/Softlib/MSLFILES/nmake15.exe">ftp://ftp.microsoft.com/Softlib/MSLFILES/nmake15.exe</A></P> </DD> </DL> <HR> <H2><A name="How_do_I_access_databases_from_m">How do I access databases from my Perl script?</A></H2> <DL> <DT><STRONG><A name="item_DBI">DBI</A></STRONG></DT> <DD> <P><FONT size="-1">DBI,</FONT> a Database Interface Module for Perl provides a consistent interface for database application development. <FONT size="-1">DBI</FONT> supports <FONT size="-1">ODBC</FONT> drivers as well as the native APIs of certain databases, including Oracle. The <FONT size="-1">DBI</FONT> home page is located at:</P> <PRE> <A href="http://www.hermetica.com/technologia/perl/DBI/index.html">http://www.hermetica.com/technologia/perl/DBI/index.html</A> </PRE> </DD> <DT><STRONG><A name="item_ADO">ADO</A></STRONG></DT> <DD> <P>The ActiveX Data Objects <FONT size="-1">(ADO)</FONT> <FONT size="-1">API</FONT> can be used with the Win32::OLE module. You can use <FONT size="-1">ADO</FONT> to access any <FONT size="-1">ODBC</FONT> data source. The Perl-Win32-Database <FONT size="-1">FAQ</FONT> includes some information on <FONT size="-1">ADO:</FONT></P> <PRE> <A href="http://www.fastnetltd.ndirect.co.uk/Perl/perl-win32-database.html">http://www.fastnetltd.ndirect.co.uk/Perl/perl-win32-database.html</A> </PRE> <P>The <FONT size="-1">ADO</FONT> home page is located at:</P> <PRE> <A href="http://www.microsoft.com/data/ado/">http://www.microsoft.com/data/ado/</A> </PRE> </DD> <DT><STRONG><A name="item_Win32">Win32::ODBC</A></STRONG></DT> <DD> <P>There are a couple of extensions that have been developed to access databases from ActivePerl. Win32::ODBC is widely popular, and is available on <FONT size="-1">CPAN</FONT> and at this <FONT size="-1">URL:</FONT></P> <PRE> <A href="http://www.roth.net/odbc/">http://www.roth.net/odbc/</A> </PRE> </DD> <DT><STRONG><A name="item_Sybase">Sybase</A></STRONG></DT> <DD> <P>The Sybperl module allows you to connect to Sybase <FONT size="-1">SQL</FONT> Server (and possibly Microsoft <FONT size="-1">SQL</FONT> Server). The Sybperl home page, which includes links to binary releases of Sybperl, is located at:</P> <PRE> <A href="http://www.mbay.net/~mpeppler/">http://www.mbay.net/~mpeppler/</A> </PRE> </DD> </DL> <P>If you choose to use a database <FONT size="-1">API</FONT> that depends on <FONT size="-1">ODBC,</FONT> you must have an <FONT size="-1">ODBC</FONT> driver for the <FONT size="-1">DBMS</FONT> you're using. You will need to configure a data source for that driver on each machine that needs to access the database. For more information on <FONT size="-1">ODBC</FONT> and how to configure a data source, check the <FONT size="-1">ODBC</FONT> Control Panel help.</P> <P>Some DBMSes, such as Microsoft Access and Microsoft <FONT size="-1">SQL</FONT> Server, can be controlled through <FONT size="-1">OLE</FONT> Automation (see the next question). See the product documentation for details.</P> <HR> <H2><A name="Is_there_a_way_to_use_OLE_Automa">Is there a way to use OLE Automation servers from my Perl script?</A></H2> <P>Yes. See the documentation for the Win32::OLE module, which is included with Perl. You can use Win32::OLE to control a wide range of Win32 applications and APIs, including <FONT size="-1">ADO.</FONT></P> <P>After reading the documentation, you can read the <A href="../Windows/ActivePerl-Winfaq12.html">FAQ on using OLE</A>.</P> <HR> <H2><A name="Is_there_a_way_to_access_Data_Ac">Is there a way to access Data Access Objects (DAO) from my Perl script?</A></H2> <P>You should use Win32::OLE to access this <FONT size="-1">API.</FONT> See question <A href="#Is_there_a_way_to_use_OLE_Automa">Is there a way to use OLE Automation servers from my Perl script?</A> and consult the <FONT size="-1">DAO</FONT> documentation.</P> <HR> <H2><A name="Can_I_send_Internet_mail_from_Pe">Can I send Internet mail from ActivePerl?</A></H2> <P>If you need to send Internet mail, you should use Net::SMTP, Mail::Sender, or Mail::Sendmail. For more information on these modules, see <A href="ActivePerl-Winfaq4.html#How_do_I_send_email_from_Perl_fo">How do I send email from ActivePerl?</A>.</P> <HR> <H2><A name="Is_there_a_way_to_access_MAPI_fr">Is there a way to access MAPI from my Perl script?</A></H2> <P>You can use the Win32::OLE module to create an instance of a <FONT size="-1">MAPI</FONT> session and send a message. In order for this to work, you must have messaging configured correctly on your machine. If you are using Microsoft Exchange, chances are this will work fine.</P> <P>If you need to send Internet mail, you should use Net::SMTP. For more information on Net::SMTP, see <A href="ActivePerl-Winfaq4.html#How_do_I_send_email_from_Perl_fo">How do I send email from ActivePerl?</A>. Here is an example script that sends mail using <FONT size="-1">MAPI:</FONT></P> <PRE> # Sender's Name and Password # my $sender = "YOUR NAME HERE"; my $passwd = "YOUR PASSWORD HERE"; # Create a new MAPI Session # use Win32::OLE; $session = Win32::OLE->new("MAPI.Session") or die "Could not create a new MAPI Session: $!"; # Attempt to log on. # my $err = $session->Logon($sender, $passwd); if ($err) { die "Logon failed: $!"; } # Add a new message to the Outbox. # $msg = $session->Outbox->Messages->Add(); # Add the recipient. # $rcpt = $msg->Recipients->Add(); $rcpt->{Name} = "RECIPIENT NAME HERE"; $rcpt->Resolve(); # Create a subject and a body. # $msg->{Subject} = "Test Message"; $msg->{Text} = <<EOF; This is a sample test message. Cheers, Mr. Email EOF # Send the message and log off. # $msg->Update(); $msg->Send(0, 0, 0); $session->Logoff(); </PRE> <HR> <H2><A name="Is_there_a_DBM_implementation_av">Is there a DBM implementation available for ActivePerl?</A></H2> <P>Yes, there is. SDBM_File is a free clone of <FONT size="-1">DBM,</FONT> and is implemented and distributed with the ActivePerl distribution. You can use it as follows:</P> <PRE> use SDBM_File; use Fcntl; tie( %myhash, "SDBM_File", 'myfile', O_RDWR | O_CREAT | O_BINARY, 0666 ) or die( "Can't tie: $!" ); $myhash{"bibim"} = "bap"; untie( %myhash ); </PRE> <P>After the <FONT size="-1">DBM</FONT> file is tied, you can use it just like any other hash.</P> <HR> <H2><A name="Is_there_a_way_to_do_GUI_program">Is there a way to do GUI programming with ActivePerl?</A></H2> <P>As of the Perl Resource Kit for Win32, the Tk library has been successfully ported to ActivePerl. Tk version 8xx and above also now has the look and feel of Windows programs, and not the old <FONT size="-1">UNIX</FONT> look of previous versions.</P> <P>You can also use the Win32::GUI module which also allows for GUI's to be made/manipulated using Perl. This module uses the standard Windows widgets to give the look and feel of Windows programs.</P> <P>For Tk information, go to <A href="http://w4.lns.cornell.edu/~pvhp/ptk/ptkTOC.html">http://w4.lns.cornell.edu/~pvhp/ptk/ptkTOC.html</A></P> <P>For Win32::GUI, go to <A href="http://dada.perl.it">http://dada.perl.it</A></P> <P><CODE>Win32::MsgBox</CODE> allows for a fast and easy way to display a Windows message box, for example:</P> <BLOCKQUOTE> <P><CODE>use Win32;<BR> <BR> MsgBox("Test", "This is a test", 48);<BR> # display a message box with an exclamation mark and an 'Ok' button<BR> <BR> sub MsgBox {<BR> my ($caption, $message, $icon_buttons) = @_;<BR> my @return = qw/- Ok Cancel Abort Retry Ignore Yes No/;<BR> my $result = Win32::MsgBox($message, $icon_buttons, $caption);<BR> return $return[$result];<BR> }</CODE></P> </BLOCKQUOTE> <P>The last value, $icon_buttons, is the sum of two values, the value for the icon and the value for the buttons. For example, if you need a message box with a question mark and the 'Ok' and 'Cancel' buttons the value you want is 32 (question mark) + 1 (Ok, Cancel) = 39. The values are listed here:</P> <BLOCKQUOTE> <P><CODE>Icons:<BR> 0 - no icon<BR> 16 - Hand<BR> 32 - Question<BR> 48 - Exclamation<BR> 64 - Asterisk<BR> <BR> Buttons:<BR> 0 - Ok<BR> 1 - Ok, Cancel<BR> 2 - Abort, Retry, Ignore<BR> 3 - Yes, No, Cancel<BR> 4 - Yes, No<BR> 5 - Retry, Cancel</CODE></P> </BLOCKQUOTE> <HR> <H2><A name="Is_there_a_port_of_Oraperl_for_W">Is there a port of Oraperl for Win32?</A></H2> <P>Oraperl is available as an emulation layer on top of DBD::Oracle. Oraperl is included with the DBD::Oracle distribution. Because the <FONT size="-1">DBI</FONT> interface is evolving, the Oraperl emulation layer is recommended because its <FONT size="-1">API</FONT> is fairly stable.</P> <P>Patches are available for DBD::Oracle that allow it to build on Windows <FONT size="-1">NT.</FONT> More information is available at:</P> <PRE> <A href="http://www.hermetica.com/technologia/perl/DBI/win32/index.html">http://www.hermetica.com/technologia/perl/DBI/win32/index.html</A> </PRE> <P>Binary distributions of <FONT size="-1">DBI</FONT> and DBD::Oracle are available from:</P> <PRE> <A href="http://www.access.digex.net/~jurlwin/">http://www.access.digex.net/~jurlwin/</A> </PRE> <HR> <H2><A name="What_modules_come_with_the_Perl_">What modules come with the ActivePerl distribution?</A></H2> <P>Along with the standard library files, there are several Win32-specific modules that are distributed with ActivePerl. These include:</P> <UL> <LI><STRONG><A name="item_Win32">Win32::Clipboard: Perl module for Windows clipboard interaction</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::Console: Perl module for Windows console interaction</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::ChangeNotification: Create and use ChangeNotification objects</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::Event: Use Win32 event objects from Perl</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::EventLog: Read from and write to the Windows NT event log</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::File: Manage file attributes (read only, system, hidden...)</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::FileSecurity: manage ACLs in Perl</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::Internet: Perl module for Internet extensions</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::IPC: Wait for objects (processes, mutexes, semaphores)</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::Mutex: Create and use mutexes</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::NetAdmin: Administer users and groups</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::NetResource: Manage resources (servers, file shares, printers)</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::ODBC: work with ODBC data sources</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::OLE: Use OLE automation from Perl</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::Pipe: Perl module for pipes</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::Process: Start and stop Win32 processes</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::Registry: Read and manage the Win32 Registry</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::Semaphore: Create and use semaphores</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::Service: Manage Windows NT services</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::Shortcut: Perl module for shell link interface</A></STRONG></LI> <LI><STRONG><A name="item_Win32">Win32::WinError: For retrieving Win32-defined errors</A></STRONG></LI> </UL> <P>These are documented on the Win32mod documentation page. There are also a number of subs built into the Win32 package, namely:</P> <UL> <LI><STRONG><A name="item_AbortSystemShutdown">AbortSystemShutdown: I mean, don't shut down this computer</A></STRONG></LI> <LI><STRONG><A name="item_DomainName">DomainName: Name of the domain this machine is in</A></STRONG></LI> <LI><STRONG><A name="item_ExpandEnvironmentStrings">ExpandEnvironmentStrings: Take a string like %HOMEPATH% and expand it to the actual value</A></STRONG></LI> <LI><STRONG><A name="item_FormatMessage">FormatMessage: Format a Win32 error code into a error message</A></STRONG></LI> <LI><STRONG><A name="item_FsType">FsType: Get the file system type of a drive</A></STRONG></LI> <LI><STRONG><A name="item_GetCwd">GetCwd: Get current working directory</A></STRONG></LI> <LI><STRONG><A name="item_GetLastError">GetLastError: Retrieve the last Win32 error code.</A></STRONG></LI> <LI><STRONG><A name="item_GetNextAvailDrive">GetNextAvailDrive: Returns the next available drive letter</A></STRONG></LI> <LI><STRONG><A name="item_GetOSVersion">GetOSVersion: Get Win32 operating system version</A></STRONG></LI> <LI><STRONG><A name="item_GetShortPathName">GetShortPathName: Returns the 8.3 name of a filename</A></STRONG></LI> <LI><STRONG><A name="item_GetTickCount">GetTickCount: Time since Windows started, in milliseconds (for timing)</A></STRONG></LI> <LI><STRONG><A name="item_InitiateSystemShutdown">InitiateSystemShutdown: Shut down this computer</A></STRONG></LI> <LI><STRONG><A name="item_IsWinNT">IsWinNT: Is this Windows NT?</A></STRONG></LI> <LI><STRONG><A name="item_IsWin95">IsWin95: Or, is it Windows 95?</A></STRONG></LI> <LI><STRONG><A name="item_LoginName">LoginName: Name of logged-in user</A></STRONG></LI> <LI><STRONG><A name="item_LookupAccountName">LookupAccountName: Given a user name, get domain, SID, SID type</A></STRONG></LI> <LI><STRONG><A name="item_LookupAccountSID">LookupAccountSID: Given a SID, get domain, user name, SID type</A></STRONG></LI> <LI><STRONG><A name="item_NodeName">NodeName: Name of this machine</A></STRONG></LI> <LI><STRONG><A name="item_SetCwd">SetCwd: Set current working directory</A></STRONG></LI> <LI><STRONG><A name="item_Sleep">Sleep: Sleep for a given number of milliseconds</A></STRONG></LI> <LI><STRONG><A name="item_Spawn">Spawn: Spawn a Win32 process</A></STRONG></LI> <LI><STRONG><A name="item_ExpandEnvironmentStrings">ExpandEnvironmentStrings: Take a string like %HOMEPATH% and expand it to the actual value</A></STRONG></LI> </UL> <P>No longer included in the Win32 module:</P> <UL> <LI><STRONG><A name="item_PerlVersion">PerlVersion: Use $] instead</A></STRONG></LI> <LI><STRONG><A name="item_GetArchName">GetArchName: Use $ENV{PROCESSOR_ARCHITECTURE}</A></STRONG></LI> <LI><STRONG><A name="item_GetChipName">GetChipName: Use $ENV{PROCESSOR_LEVEL} . $ENV{PROCESSOR_ARCHITECTURE}</A></STRONG></LI> </UL> <HR> <H2><A name="Where_can_I_find_other_modules_f">Where can I find other modules for ActivePerl?</A></H2> <P>Modules for ActivePerl are available on <FONT size="-1">CPAN</FONT> (Comprehensive Perl Archive Network), a Perl archive that's mirrored around the world. To find your nearest mirror, check here:</P> <PRE> <A href="http://www.perl.com/perl/CPAN/modules/by-module/Win32/">http://www.perl.com/perl/CPAN/modules/by-module/Win32/</A> </PRE> <P>(Note that this will send you to your nearest mirror automagically. Cool, huh?)</P> <HR> <H2><A name="Is_there_a_GD_module_available_f">Is there a GD module available for ActivePerl?</A></H2> <P><FONT size="-1">GD</FONT> now works with Windows, and can be installed using <FONT size="-1">PPM</FONT> (the Perl Package Manager). This graphics library allows the creation and some manipulation of industry standard <FONT size="-1">PNG</FONT> format images.</P> <HR> <H2><A name="What_is_CPAN_and_how_do_I_use_it">What is CPAN and how do I use it?</A></H2> <P><FONT size="-1">CPAN</FONT> is the Comprehensive Perl Archive Network, a collection of pretty much every file you could ever want for Perl programming. The original archive is in Finland, but it is mirrored on <FONT size="-1">FTP</FONT> servers throughout the world.</P> <P>You can connect to your closest <FONT size="-1">CPAN</FONT> mirror using the <FONT size="-1">CPAN</FONT> redirector at <A href="http://www.perl.com.">http://www.perl.com.</A> The following <FONT size="-1">URL:</FONT></P> <PRE> <A href="http://www.perl.com/CPAN/">http://www.perl.com/CPAN/</A> </PRE> <P>will redirect your browser to the nearest <FONT size="-1">CPAN</FONT> mirror (one on your continent and maybe only a few hops away). This <FONT size="-1">URL</FONT></P> <PRE> <A href="http://www.perl.com/CPAN">http://www.perl.com/CPAN</A> </PRE> <P>lets you pick a <FONT size="-1">CPAN</FONT> mirror site yourself, as well as giving a little more information.</P> <P><FONT size="-1">CPAN</FONT> is good for finding ActivePerl distributions as well as modules and scripts. However, read</P> <PRE> <A href="#How_can_I_use_modules_from_CPAN_"> How can I use modules from CPAN? </A> </PRE> for more information. <HR> <H2><A name="Is_there_a_library_to_read_or_wr">Is there a library to read or write Microsoft Office or other application files?</A></H2> <P>In general, there aren't any library modules to read or write application files, like Microsoft Word, Microsoft Excel, Microsoft Access, WordPerfect, Lotus 1-2-3, etc.</P> <P>However, many if not most major Windows applications now support <FONT size="-1">OLE</FONT> Automation. You can use the <FONT size="-1">OLE</FONT> Automation support of Microsoft Office applications to read and write their file formats, for example. See the documentation on your application for information on its support for <FONT size="-1">OLE</FONT> Automation. See <A href="#Is_there_a_way_to_use_OLE_Automa">Is there a way to use OLE Automation servers from my Perl script?</A> for more information.</P> <P>As a special case, many database files, like Microsoft Access, FoxPro, dBase or Paradox files, can be accessed using <FONT size="-1">ODBC</FONT> (Open DataBase Connectivity). See <A href="#How_do_I_access_databases_from_m">How do I access databases from my Perl script?</A> for details on how to use <FONT size="-1">ODBC</FONT> with ActivePerl.</P> <HR> <H1><A name="AUTHOR_AND_COPYRIGHT">AUTHOR AND COPYRIGHT</A></H1> <P>This <FONT size="-1">FAQ</FONT> was originally assembled and maintained by Evangelo Prodromou. It has been revised and updated by Brian Jepson of O'Reilly & Associates, David Grove and David Dmytryshyn of ActiveState, Henning Michael M°ller-Nielsen of RTO, Kevin Meltzer and David Sparks of ActiveState.</P> <P>This <FONT size="-1">FAQ</FONT> is in the public domain. If you use it, however, please ensure that you give credit to the original authors.</P> <TABLE border="0" cellpadding="0" cellspacing="0" width="100%"> <TR> <TD class="block" valign="MIDDLE" width="100%" bgcolor="#cccccc"><FONT size="+1"><STRONG> <P class="block"> ActivePerl FAQ</P> </STRONG></FONT></TD> </TR> </TABLE> </BODY> </HTML>