May 13, 2001 #1 PogoWolf Programmer Mar 2, 2001 351 US Hey all! I've had a brain fart.. with an Access/SQL Statment: "SELECT Count(*) FROM Users;" How can I display the return, using ADO and the RecordSet Object? ****** Darkness... Bleakness... and Plastic forks... --The PogoWolf
Hey all! I've had a brain fart.. with an Access/SQL Statment: "SELECT Count(*) FROM Users;" How can I display the return, using ADO and the RecordSet Object? ****** Darkness... Bleakness... and Plastic forks... --The PogoWolf
May 13, 2001 #2 tlbroadbent MIS Mar 16, 2001 9,982 US I'm not sure I undersand but is this what you are looking for? SELECT Count(*) AS RowCnt FROM Users Terry X-) "I don't have a solution, but I admire your problem." Upvote 0 Downvote
I'm not sure I undersand but is this what you are looking for? SELECT Count(*) AS RowCnt FROM Users Terry X-) "I don't have a solution, but I admire your problem."
May 14, 2001 Thread starter #3 PogoWolf Programmer Mar 2, 2001 351 US SO.. to display the return on the screen.. I would need to write something like: Response.Write RowCnt Correct? =) ****** Darkness... Bleakness... and Plastic forks... --The PogoWolf Upvote 0 Downvote
SO.. to display the return on the screen.. I would need to write something like: Response.Write RowCnt Correct? =) ****** Darkness... Bleakness... and Plastic forks... --The PogoWolf