HI all, Im now doing a system using ASP.
But right now, Im implementing VBScript to access the database. Im using MS Access.
Ive been having problems trying to get the number of rows of the recordset.
For example, I need to know the number of orders the same person made for a certain month...
So i guess the SQL Statement would be
set rs = Select count(*) from Expenses where id = id and MONTH(date) = 11
How do i get the number of rows in 'rs' ? Can i? If not is there any alternatives to get the row count from the database?
Any help would be appreciated..Thanks
But right now, Im implementing VBScript to access the database. Im using MS Access.
Ive been having problems trying to get the number of rows of the recordset.
For example, I need to know the number of orders the same person made for a certain month...
So i guess the SQL Statement would be
set rs = Select count(*) from Expenses where id = id and MONTH(date) = 11
How do i get the number of rows in 'rs' ? Can i? If not is there any alternatives to get the row count from the database?
Any help would be appreciated..Thanks
Comment