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 ?
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
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.