Oct 29, 2002 #1 arpan Programmer Joined Oct 16, 2002 Messages 336 Location 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 Joined Aug 22, 2001 Messages 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... ;-)