It's a bit of a large subject to cover in detail... Take a look at the DBD and DBI modules. These provide perl with a standard interface to the many RDBMS packages out there. For example, MySQL, Oracle, Informix, and Postgres.<br><br>In a nutshell, there are several standard steps for extracting your data:<br><br>* Establish a connection to the database.<br>* Prepare your SQL statement.<br>* Execute the SQL statement.<br>* Retrieve and store the returned data.<br>* Close the SQL statement.<br><br>All of these are covered by the same commands regardless of which DBMS system you are using. The only things that need to change if you change your database are the DB module you are using, and maybe the initial command that connects to the database. <p> <br><a href=mailto: > </a><br><a href= > </a><br>--<br>
0 1 - Just my two bits