in reply to Read MS Access Memos with Win32::OLE ADODB

CursorLocation is a property, not a method. You should set it like this:
    $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.
  • Comment on Re: Read MS Access Memos with Win32::OLE ADODB