On 12 Jul 98, at 0:19, Chad Zimmerman wrote:

> Peter J. Schoenster wrote:
> > Forget using anything proprietary.
> > 
> > Use DBI and then you can use the same script for msAccess, mySQL, mSQL,
> > Orcale etc. etc.
> 
> Well, if I can intall and use it without having any admin privdgles I'll
> try it .. otherwise ...

You don't need to be root to install the modules. Here is a direct link which explains 
just how to do it:

> 7.How to install perl5 modules into a local directory (when you can't
> become root). Introduction to CPAN.pm

http://www.esafe.com/stas/TULARC/webmaster/myfaq.html

And go here for great webmaster resources in general.  The webmaster here has a lot of 
experience and has already been where we are now.

http://www.esafe.com/stas/TULARC/

> Thanks will look.  I looked today for a few hours and there are no good
> full tutorials on mSQL ... once I learn the basics I am going to do up a
> Tutorial on it that covers everying in a way people can understand.

Yes that is true. But don't make it mSQL specific.  What you explain can be simply 
RDMBS specific.  DBI is the way to go:

use DBI;
my $data_source = 'dbi:mSQL:okpi';
my $dbh = DBI->connect("$data_source") || &print_error("Can't connect to 
$data_source: $DBI::errstr");

You just change mSQL to mySQL or ORACLE or ODBC and if the tables are the same 
then it will all work. I work with an Access database on my nt and then I export the 
database and import it into mSQL and I use, more or less, the same Perl scripts.

Some mailing lists:

------------------------------------------------------------------------------
To unsubscribe from this list, please visit http://www.fugue.com/dbi
If you are without web access, or if you are having trouble with the web page,
please send mail to [EMAIL PROTECTED]   Please try to use the web
page first - it will take a long time for your request to be processed by hand.


********************************************
* [EMAIL PROTECTED]                   *
* THE web database discussion list          *
* This list is sponsored by hole-in-the.net *
* http://www.hole-in-the.net/guy/webdb/     *
*********************************************

[EMAIL PROTECTED]




 _________________________________________________________
Peter J. Schoenster                      [EMAIL PROTECTED]
Exercise Your Brain..Read a Book       http://www.rede.com/
             Free CGI Scripts and Applications
           http://www.rede.com/samples/index.html
____________________________________________________________________
--------------------------------------------------------------------
 Join The Web Consultants Association :  Register on our web site Now
Web Consultants Web Site : http://just4u.com/webconsultants
If you lose the instructions All subscription/unsubscribing can be done
directly from our website for all our lists.
---------------------------------------------------------------------

Reply via email to