To All
I have a simple Update Sql query .. I was just curious if there were a way to return the number of records changed
by the Update?
Thanks
Rick Lipkin

I have a simple Update Sql query .. I was just curious if there were a way to return the number of records changed
by the Update?
Thanks
Rick Lipkin
cSql := "UPDATE [Customer] "
cSql += "SET [StaffEid] = "+ltrim(str(nAeNewEid))+", [AccountExecutive] = '"+cAeNew+"' "
cSql += "WHERE [StaffEid] = "+ltrim(str(nStaffEid))
oCn:Execute( cSql )