Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Insert memo text
Message
From
07/03/2008 12:27:44
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Insert memo text
Miscellaneous
Thread ID:
01299781
Message ID:
01299781
Views:
52
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
Next
Reply
Map
View

Click here to load this message in the networking platform