Sep 23, 2004 #1 gcole Programmer Aug 2, 2000 390 US I have a variable sent from an asp page as follows: set @test = 'OConnor';select * from dbo.TableName The SP only recognizes the 'OConnor' piece. How can I prevent the select code from executing? Can this be done at the DB level?
I have a variable sent from an asp page as follows: set @test = 'OConnor';select * from dbo.TableName The SP only recognizes the 'OConnor' piece. How can I prevent the select code from executing? Can this be done at the DB level?
Sep 23, 2004 #2 hneal98 Programmer Aug 13, 2002 1,637 US is that whole satement sent from the asp page? Upvote 0 Downvote
Sep 23, 2004 Thread starter #3 gcole Programmer Aug 2, 2000 390 US Yes it is. It looks to me like it has to be handled at the page level. Upvote 0 Downvote
Sep 23, 2004 #4 hneal98 Programmer Aug 13, 2002 1,637 US Yes, I think that would be much easier to deal with. if you could change the string that is passed back. Upvote 0 Downvote
Yes, I think that would be much easier to deal with. if you could change the string that is passed back.