Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
TSQL transforming reserved xml characters
Message
De
16/01/2014 08:00:55
 
 
À
16/01/2014 07:57:27
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Versions des environnements
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Desktop
Divers
Thread ID:
01591988
Message ID:
01591990
Vues:
50
>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform