|
-
Sep 17th, 2000, 02:53 PM
#1
Hi,
Is there a way to get the text that was printed by a stored procedure using the
print 'text blablalba '
command in vb, when using ado as db-connector?
i'm using sqlserver 7 as database.
thanks,
Matthijs Vader
-
Sep 18th, 2000, 01:34 PM
#2
Frenzied Member
I don't believe so. Nothing from preventing you to output the debug information to another table (set up specifically just to take the information) that you could then query...
Assume the table has two fields, lineno and text, your stored procedure would want to, at the start, clear any entries in the table.
then, instead of print "text", you'd want to have:
insert into table values (#,"text")
where Number is a value set by you representing the line.
-
Sep 18th, 2000, 02:10 PM
#3
Thanks! too bad it isn't possible.
Matthijs Vader
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|