Any PPM package for DBD-ADO 2.5?

2002-10-08 Thread Roger Perttu
Hi all, Where can I find a PPM package for DBD-ADO 2.5? It's not in any of the following: XMLPROJ: http://www.xmlproj.com/PPM/ THEORYX5: http://theoryx5.uwinnipeg.ca/ppmpackages/ ActiveState Package Repository: http://ppm.ActiveState.com/cgibin/PPM/ppmserver.pl?urn:/PPMServer

problem when using DBI

2002-10-08 Thread pawan reddy lingala
Hai, I am trying to use DBI to connect to database. But I am getting the folllowing error. Coudl you please help me out in this. Can't locate loadable object for module DBI in INC (INC contains: . . C:/Perl/lib C:/Perl/site/lib .) at C:/Perl/site/lib/DBI.pm line 235 BEGIN failed--compilation

Session management in cgi/perl

2002-10-08 Thread vikas mehta
Can anyone help me how to maintain user session using perl scripts Are there any online references available Regards Vikas

Re: problem when using DBI

2002-10-08 Thread KAWAI,Takanori
Hi. - Original Message - From: "pawan reddy lingala" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 08, 2002 12:23 PM Subject: problem when using DBI Hai, I am trying to use DBI to connect to database. But I am getting the folllowing error. Coudl you please help

Re: Session management in cgi/perl

2002-10-08 Thread Hardy Merrill
I haven't done this yet myself, but I've been told you can do it with the Apache::Session module - I think(?) that's under mod_perl. Someone who knows - please confirm(or deny) this. -- Hardy Merrill Senior Software Engineer Red Hat, Inc. vikas mehta [[EMAIL PROTECTED]] wrote: Can anyone

Re: Session management in cgi/perl

2002-10-08 Thread KAWAI,Takanori
Hi. - Original Message - From: Hardy Merrill [EMAIL PROTECTED] To: vikas mehta [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, October 08, 2002 11:02 PM Subject: Re: Session management in cgi/perl I haven't done this yet myself, but I've been told you can do it with the

Re: Session management in cgi/perl

2002-10-08 Thread John Day
Try the excellent reference MySQL and Perl for the WEB by Paul Du Bois. (Paul is a member of this list). He talks at length about session management and tracking - well worth having on the shelf. John At 10:02 AM 10/8/2002 -0400, Hardy Merrill wrote: I haven't done this yet myself, but I've

DBI - build a private copy

2002-10-08 Thread Burak Grsoy
In the readme there is a section like this: (You can use Configure -Dprefix=... to build a private copy.) whats this private copy thing? and how can I do it? can someone give me an example?

RE: DBI - build a private copy

2002-10-08 Thread Burak Gürsoy
thanks :) thats just what I need :) -Original Message- From: Sterin, Ilya (I.) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 08, 2002 6:19 PM To: 'Burak Gürsoy'; DBI Subject: RE: DBI - build a private copy Means you can install it into a custom directory... perl Makefile.PL

OT - Apache .htaccess auth - available to Perl?

2002-10-08 Thread Hardy Merrill
I know this is OT, so please no flames - I'm only asking here since I'm fairly sure someone will have the answer, and because asking on Google groups takes hours for an answer. For an app, I'm using Apache .htaccess authentication under mod_perl - Apache pops up the basic authentication box

Re: OT - Apache .htaccess auth - available to Perl?

2002-10-08 Thread William R. Mussatto
On Tue, 8 Oct 2002, Hardy Merrill wrote: Date: Tue, 8 Oct 2002 11:58:38 -0400 From: Hardy Merrill [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: OT - Apache .htaccess auth - available to Perl? I know this is OT, so please no flames - I'm only asking here since I'm fairly sure someone

RE: OT - Apache .htaccess auth - available to Perl?

2002-10-08 Thread Sterin, Ilya
No need for a module, just use $ENV{REMOTE_USER} variable, which will give you the currently logged in user. Ilya -Original Message- From: Hardy Merrill To: [EMAIL PROTECTED] Sent: 10/8/02 9:58 AM Subject: OT - Apache .htaccess auth - available to Perl? I know this is OT, so please no

RE: OT - Apache .htaccess auth - available to Perl?

2002-10-08 Thread Sterin, Ilya (I.)
No need for a module, just use $ENV{REMOTE_USER} variable, which will give you the currently logged in user. Ilya -Original Message- From: Hardy Merrill [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 08, 2002 11:59 AM To: [EMAIL PROTECTED] Subject: OT - Apache .htaccess auth -

OT Re: OT - Apache .htaccess auth - available to Perl?

2002-10-08 Thread John Gedeon
You should be able access the user name entered through apache authentication by accessing the CGI variable REMOTE_USER or AUTH_USER. (REMOTE_USER is an environment variable as well so you could use $username = $ENV{'REMOTE_USER'}; HTH John At 08:58 AM 10/8/2002, you wrote: I know this is

Re: Session management in cgi/perl

2002-10-08 Thread Ian Harisay
Look at (or buy) Paul Dubois's Mysql and Perl for the web. I am working on a mgr based on Pauls examples. It isn't ready for primetime yet though. -ian vikas mehta [EMAIL PROTECTED] 10/08/02 07:09AM Can anyone help me how to maintain user session using perl scripts Are there any online

RE: DBI - build a private copy

2002-10-08 Thread Sterin, Ilya (I.)
Means you can install it into a custom directory... perl Makefile.PL PREFIX=/your/dir for those that don't have root priveleges. Ilya -Original Message- From: Burak Gürsoy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 08, 2002 11:18 AM To: DBI Subject: DBI - build a private copy

Dynaloader

2002-10-08 Thread Bill Hamilton
This may be the proper forum for this, but here goes: I installed the latest DBI.pm and DBD.pm. This onto an ActiveState distribution on an NT box. As I understand it, the install consists of copying the files into the proper perl\site\lib directory. On my system, the DBI.pm was in site\lib

Re: Dynaloader

2002-10-08 Thread Jeff Zucker
Bill Hamilton wrote: This may be the proper forum for this, but here goes: I installed the latest DBI.pm and DBD.pm. This onto an ActiveState distribution on an NT box. As I understand it, the install consists of copying the files into the proper perl\site\lib directory. Nope, wrong,

Re: DBI - build a private copy

2002-10-08 Thread Michael A Chase
On Tue, 8 Oct 2002 18:17:51 +0300 Burak Grsoy [EMAIL PROTECTED] wrote: In the readme there is a section like this: (You can use Configure -Dprefix=... to build a private copy.) whats this private copy thing? and how can I do it? can someone give me an example? That is talking about

Private PPM repositories in DBI FAQ

2002-10-08 Thread Michael A Chase
Since the ActiveState PPM repository is often out of date, some of you have built PPMs and made them available. Unfortunately, every time I want to suggest someone get the latest version from one of your private repositories, I can't find the URI. I have added a DBI FAQ (120) to list private

Re: Dynaloader

2002-10-08 Thread Michael A Chase
On Tue, 8 Oct 2002 13:45:59 -0500 Bill Hamilton [EMAIL PROTECTED] wrote: This may be the proper forum for this, but here goes: I installed the latest DBI.pm and DBD.pm. This onto an ActiveState distribution on an NT box. As I understand it, the install consists of copying the files into

Re: problem when using DBI

2002-10-08 Thread Michael A Chase
On Tue, 8 Oct 2002 22:18:18 +0900 KAWAI,Takanori [EMAIL PROTECTED] wrote: From: pawan reddy lingala [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 08, 2002 12:23 PM Subject: problem when using DBI I am trying to use DBI to connect to database. But I am getting the

Leaving the list infos... [was: failure notice]

2002-10-08 Thread Martin Stricker
If even this autoreply doesn't work... ;=D This really hit me by surprise! *grin* [EMAIL PROTECTED] wrote: Hi. This is the qmail-send program at onion.perl.org. I'm afraid I wasn't able to deliver your message to the following addresses. This is a permanent error; I've given up. Sorry it

Re: Leaving the list infos... [was: failure notice]

2002-10-08 Thread Michael A Chase
On Tue, 08 Oct 2002 21:03:54 +0200 Martin Stricker [EMAIL PROTECTED] wrote: If even this autoreply doesn't work... ;=D This really hit me by surprise! *grin* [EMAIL PROTECTED] wrote: AAARRGGGHHH !! Maybe its time to get the Unsubscribe instructions, and perhaps a link to the

RE: Private PPM repositories in DBI FAQ

2002-10-08 Thread Jeff Urlwin
Mac, ftp://ftp.esoftmatic.com/outgoing/DBI I have a few opinions on this, though: 1) If someone else's DBI and my DBI don't match, we'll have some problems with someone trying to take DBI and DBD::ODBC and then DBD::Oracle from a different site. In theory, if we are all running DBI

RE: Private PPM repositories in DBI FAQ

2002-10-08 Thread Sterin, Ilya
That's fine, we can do that:-) Also though, remember that PPM is supposed to take care of the dependencies for you, as far as Perl version, build, etc... As far as Installation, we can either consolidate all PPM insatlls, or each PPM builder can write a small script to be run before PPM install

Re: new ado driver fails

2002-10-08 Thread Thomas A. Lowery
What version of DBI are you using? The quickest solution is to remove references to SQL_UNKNOWN_TYPE from ADO.pm not a great solution, but it would get you moving. Tom On Mon, Oct 07, 2002 at 11:01:47AM -0500, Bill Hamilton wrote: I just installed the latest DBD::ADO driver and now all

Apache::DBI vs. mod_perl vs. CGI::Fast

2002-10-08 Thread Thomas Hilbig
I recently started using CGI::Fast along with caching DBI connections to speed up DBI-based web pages. I choose CGI::Fast over mod_perl it does not tie me to any one webservers (although I do love my Apache!). For persistent servers/DBI connections, is there any reasons why someone would

Re: I need a more efficient driver

2002-10-08 Thread Henri Asseily
Beyond efficiency of the driver, it's capabilities and efficiency of the underlying database engine that you have to consider. And of course how good your database design is. If you don't need stored procedures, MySQL is great. It's fast and free, and if you're moving from Access, the only