Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
TSQL transforming reserved xml characters
Message
From
16/01/2014 08:00:55
 
 
To
16/01/2014 07:57:27
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Desktop
Miscellaneous
Thread ID:
01591988
Message ID:
01591990
Views:
46
>There are times when I need to copy data from a text column in sqlserver to another text column. The destination text column must have all xml reserved characters transformed. For example if the originating column has "call in < 10 minutes" then I have to transform it to "call in < 10 minutes"
>
> I use a sql statement with
>
>
>"UPDATE " + TableName + " SET " + column2 + " = (select " + column1 + " from " + TableName + " WHERE column1.id = ' " + idvalue + " ' ).... 
>
>
>to handle copying the 1st column's data to the destination column which works great, however I now need to transform those reserved characters if they exist because the destination column has the same information but formatted for xml and do not want to add any additional process to store into a variable and transform then copy if I can avoid it.
>
>Ideas?

Is this what you want?
Function txt2html
   Lparameter tcHTML

   tcHtml = Strtran(tcHtml, [<], [&lt;])
   tcHtml = Strtran(tcHtml, [>], [&gt;])
   tcHtml = Strtran(tcHtml, ["], [&quot;])
   tcHtml = Strtran(tcHtml, [&], [&amp;])
   tcHtml = Strtran(tcHtml, [ ], [&nbsp;])

Return tcHtml
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform