Subject: | Cannot create ADODB.Connection object under Cygwin |
This is on 64bit Windows 7.
On Cygwin:
$ perl -Mblib -MData::Dumper -MWin32::OLE -le 'print Dumper(Win32::OLE-
Show quoted text
>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' );