Viewing 3 posts - 1 through 4 (of 4 total)
Oh, and another thing:
in the example above, this bit of code...
UPDATE Categories
SET Description = CONVERT(varchar, Description ) + 'Hello'
WHERE CategoryName = @InputParm
if @@ROWCOUNT = 0 set @rc = 1
if @@ERROR...
August 20, 2004 at 7:52 am
You can access return values from SPs if you are using a parameterized Command object in VB6/ADO - just add a parameter with the type adReturnValue. There's also a way...
August 20, 2004 at 7:45 am
Hi Ron
how about using a mixture of SELECT TOP and ORDER BY?
for example, if you do SELECT TOP 25% and ORDER BY a certain column, that should get your first...
August 5, 2004 at 3:40 am
Viewing 3 posts - 1 through 4 (of 4 total)