You can do this via ADSI by passing alternate credentials
my $objConn = Win32::OLE->CreateObject("ADODB.Connection");
$objConn->{Provider} = "ADsDSOObject";
$objConn->Properties->{'User ID'} = $user;
$objConn->Properties->{'Password'} = $pwd;
$objConn->Open(
> Anyone have any experience reading FileMaker 7 Databases from Perl?
> I've seen comments in other forums about an ODBC driver, but the only
> one I can find interacts with the filemaker server. I'm trying to read
> the .USR databases directly if possible.
>
> - Chris
dunno about fp 7, but f
PROBLEM:
I would like to create a Web form that "resets" a user's lost password in
one of our walled-off domains, which uses Active Directory in native mode.
Since the user does not have their old password, the
Win32::NetAdmin::UserChangePassword / Win32::AdminMisc::UserChangePassword
(Chapter 3,
Anyone have any experience reading FileMaker 7 Databases from Perl? I've
seen comments in other forums about an ODBC driver, but the only one I can
find interacts with the filemaker server. I'm trying to read the .USR
databases directly if possible.
- Chris
___
- Original Message -
From: "Arijit Das" <[EMAIL PROTECTED]>
To: ;
Sent: Monday, July 10, 2006 7:04 AM
Subject: Debugging Perl Code Dynamically - howto?
> I have a huge perl script of which I want to get the
> execution trace (PERLDB_OPTS='NonStop AutoTrace
> LineInfo=execution_trace.ou
pDale wrote:
> I would suggest you look into the GUI debugger module PTKDB. I love
> CLI as much as the next curmudgeon, but there's something to be said
> for a multi-pane debugging environment.
The GUI sucks until it has all the commands that the commandline does.
Also it hangs for long per
On 7/10/06, Mark Gardner <[EMAIL PROTECTED]> wrote:
> Arijit Das wrote at 7/10/2006 7:04 AM:
>
> >I have a huge perl script of which I want to get the
> >execution trace (PERLDB_OPTS='NonStop AutoTrace
> >LineInfo=execution_trace.out') of say just a single
> >subroutine "sub init()".
>
> perldoc pe
Arijit Das wrote at 7/10/2006 7:04 AM:
>I have a huge perl script of which I want to get the
>execution trace (PERLDB_OPTS='NonStop AutoTrace
>LineInfo=execution_trace.out') of say just a single
>subroutine "sub init()".
>
>
[...]
>A quick help/pointer on this will be very helpful.
>
>
perl
Title: Another regular expression question
my $file = "c:\views\12352_..\MigrationTool.exe";
my $filename = "";
if (-e $file) {
($filename = $file) =~ s%.*(\/|\\)(.*?)$%$2%;
print "It is not file\n" unless ($filename);
} else {
print "File does not exist\n";
}
- Original Message -
I have a huge perl script of which I want to get the
execution trace (PERLDB_OPTS='NonStop AutoTrace
LineInfo=execution_trace.out') of say just a single
subroutine "sub init()".
I cannot have my PERLDB_OPTS set to 'NonStop AutoTrace
LineInfo=execution_trace.out' right from the begining
because th
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of ukhas
jean
Sent: 08 July 2006 16:32
To: active perl
Subject: Should we use a scalar or an array for reading the contents of
afile??
> Hello All,
>
> I was asked this by a superior of mine and was unable to give any
sound explanation
bruce <> wrote:
> hi..
>
> i've been trying to test some simple perl code to get a website.. a
> part of axess.stanford.edu.
>
> i can get a few pages, and then my test app dies... i have tracked
> the http trafic using livehttpheaders from firefox.
>
> i can't seem to figure out how to replic
12 matches
Mail list logo