in reply to Read MS Access Memos with Win32::OLE ADODB
$rs->{CursorLocation} = adUseClient;
Accessing fields would look like
print $rs->Fields("<field name>")->Value, "\n";
With Win32::OLE you always have to call the default method explicitly; it is not called automatically like VBScript does it.
|
|---|