Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Insert memo text
Message
 
 
To
07/03/2008 12:27:44
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
01299781
Message ID:
01299786
Views:
10
insert into mytable (memofield) values (CHRTRAN(memotext, CHR(13) + CHR(10), ""))
>When using the SQL INSERT command, how do you "clean" a memo field if there are carriage returns in the memo text?
>
>
>insert into mytable (memofield) values (memotext)
>
>
>I am running this from an ASP page and it crashes if there are CRLF in the memotext.
>
>execstr = "EXEC 'insert into memos (link_table,record_id,memo_name,memo_text,added_by)"
>execstr = execstr & " values ([people],"
>execstr = execstr & lcPerson_id & ","
>execstr = execstr & "[notes],"
>execstr = execstr & "[" & request.form("txtNotes") & "],"
>execstr = execstr & "[" & session("FullUserName") & "])'"
>response.write(execstr)
>oConn.EXECUTE(execstr)
>
>
>Thanks
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform