Sun Jan 23 16:40:46 2011: Request 65052 was acted upon.
Transaction: Ticket created by RKITOVER
Queue: Win32-OLE
Subject: Cannot create ADODB.Connection object under Cygwin
Broken in: 0.1709
Severity: Important
Owner: Nobody
Requestors: [email protected]
Status: new
Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=65052 >
This is on 64bit Windows 7.
On Cygwin:
$ perl -Mblib -MData::Dumper -MWin32::OLE -le 'print Dumper(Win32::OLE-
>new("ADODB.Connection"))'
$VAR1 = undef;
On ActiveState Perl 32 bit:
$ perl -MData::Dumper -MWin32::OLE -le 'print Dumper(Win32::OLE->new
("ADODB.Connection"))'
$VAR1 = bless( {
'Properties' => bless( {
'Count' => 14,
'Item' => undef
}, 'Win32::OLE' ),
'ConnectionString' => 'Provider=MSDASQL.1',
'CommandTimeout' => 30,
'ConnectionTimeout' => 15,
'Version' => '6.1',
'Errors' => bless( {
'Count' => 0,
'Item' => undef
}, 'Win32::OLE' ),
'DefaultDatabase' => undef,
'IsolationLevel' => 4096,
'Attributes' => 0,
'CursorLocation' => 2,
'Mode' => 0,
'Provider' => 'MSDASQL.1',
'State' => 0
}, 'Win32::OLE' );