Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Disappearing ?
Message
 
 
À
24/10/2001 16:37:03
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Titre:
Divers
Thread ID:
00572896
Message ID:
00572920
Vues:
21
This message has been marked as a message which has helped to the initial question of the thread.
You can use single or double quotes to fix this problem. My guess would be that SQL Select parser doesn't process string encloused in [] delimiters properly
Select ;
     "a?b" as Url ;
   From < table >
* or
Select ;
     'a?b' as Url ;
   From < table >
>On of our SQL statements has a field which contains a "?".
>
>I ran a simple test.
>
>
>Select ;
>     [a?b] as Url ;
>   From < table >
>
>
>The question mark disappears. Below fixes the problem.
>
>
>Select ;
>     [a] + Chr(63) + [b] as Url ;
>   From < table >
>
>
>I'm betting this has been documented already. What is the reason for this behavior?
>
>TIA
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform