> $conn = Win32::OLE->new("ADODB.Connection");

Does anyone know if there are benefits to creating objects this way as
opposed to

$Server->CreateObject("ADODB.Connection");

> $id = $rs->Fields('id')->value;
> $ts= $rs->Fields('timestamp')->{Value};

I never use the later method to access things from a Recordset.

> ts: Win32::OLE::Variant=SCALAR(0x3a12514)

print $$ts; # try dereferencing it?

or 

# for some reason Dumper() doesn't like recordset objects
use Data::Dumper;
print Dumper $rs->Fields('timestamp');

- Ron
_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web

Reply via email to