in reply to Re^2: WIn32::OLE debug
in thread WIn32::OLE debug
print "table rows count= $table->Rows->Count \n";
only interpolates $table. Instead, try
print 'table rows count = ', $table->Rows->Count, ".\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: WIn32::OLE debug
by chafelix (Acolyte) on Oct 12, 2025 at 18:56 UTC | |
by soonix (Chancellor) on Oct 13, 2025 at 08:29 UTC | |
by chafelix (Acolyte) on Oct 13, 2025 at 19:01 UTC | |
by Anonymous Monk on Oct 25, 2025 at 07:26 UTC |