Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Stored procedure

Status
Not open for further replies.

Ekstrom

Programmer
Feb 13, 2001
9
SE
Hi

I want to return a ntext datatype to ASP. How do I do that?

ASP:
.Parameters.Append .CreateParameter("@textpart", adLongVarChar, adParamOutput)

SQLServer 7.0:
CREATE PROCEDURE sp_select_info
(
@ int,
@headline varchar(250) output,
@ingress varchar(1500) output,
@textpart text output
)
As
SELECT @headline=headline, @ingress=ingress, @textpart=textpart FROM WHERE = @
thanks in advance!
/Martin
 
CREATE PROCEDURE sp_select_info
(
@ int,
@headline varchar(250) output,
@ingress varchar(1500) output,
@textpart text output
)
returns string
as
..... John Fill
1c.bmp


ivfmd@mail.md
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top