Oct 29, 2002 #1 arpan Programmer Oct 16, 2002 336 IN Can a query written in Access be executed using ASP in the same way as how stored procedures in SQL Server are executed by ASP? If so, how? Thanks, Arpan
Can a query written in Access be executed using ASP in the same way as how stored procedures in SQL Server are executed by ASP? If so, how? Thanks, Arpan
Oct 29, 2002 #2 Jonax Programmer Aug 22, 2001 210 If it's a select-query called qry_name you would do something like this: Code: select * from qry_name This is not a bug - it's an undocumented feature... ;-) Upvote 0 Downvote
If it's a select-query called qry_name you would do something like this: Code: select * from qry_name This is not a bug - it's an undocumented feature... ;-)