in reply to Record Count
This is kinda guessing thought, I've never done ADO with Perl. You also might want to know that most datasources will always return a recordcount of 0 anyway...$RS = $Conn->Execute(... sql ...); if ($RS->EOF) # error if ($RS->Recordcount == 0) # error
Hope this helps...
gav^
|
|---|