Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Update ntext field on ASP
Message
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00593627
Message ID:
00593661
Views:
21
>Hi all
>I need to add text to a ntext field in an Update command from an ASP page to a SQL 7.0 table.
>
>I need the same command of this but to ASP for SQL:
>
>cSQL = "Update tablename Set ntextField = ntextField + " + Chr(34) + "New quoted text" + Chr(34)
>
>SQL Server don't accept CHR, then I tryed with CHAR, but OLEDB Provider error again.
>
>Please help me right now!!!! (my client is here with a gun to kill me)
>Thank a lot in Advance!!!!

Try
cSQL = "Update tablename Set ntextField = '"  + ntextField +  Chr(34) + "New quoted text" + Chr(34) + "'"
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform