Please enable JavaScript to view this site.

ESL Documentation

Inquiry Command (ODBC Only)
Returns number of rows affected.

rowcount

Use this command to retrieve the number of rows affected by the previous "UPDATE", "INSERT" or "DELETE" SQL statement.

Example

subroutine Update(string: Statement_SV, Count_IV) is

 

 begin guarded

         response to start

                 send Statement_SV "\n" to SQL

         response to "SQL>" from SQL

                 leave block

 end

 begin guarded

         response to start

                 send "rowcount\n" to SQL

         response to "SQL>" from SQL

                 leave block

         response to line from SQL

                 extract from input

                         take number Count_IV

 end