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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cmd command for sql text not nvarchar

Status
Not open for further replies.

orangeblue

Programmer
Nov 26, 2002
107
GB
HI

I got a field called text area, but on my store proc i used the command

@desc text



I know how to use nvarchar, but not sure about text

cmdStoredProc.Parameters.Append cmdStoredProc.CreateParameter("@desc", adVarChar, adParamInput, , gs_desc)

i am having errors using the above statement

cheers
Hesh


 
this is the correct declaration

@desc text

that you got...

what actual error message are you getting...

-DNG
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top