Skip to main content

Hi,

we are working with AcuSQL and to show a progress bar we need to know how many records a sql table contains.

Any ideas ?

Hi,

we are working with AcuSQL and to show a progress bar we need to know how many records a sql table contains.

Any ideas ?

You should be able to use the COUNT(*) function in an SQL query:

       EXEC SQL
           select count(*) into :row-count from table_name
       END-EXEC