Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Cursor not being created
Message
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 SP2
OS:
Windows XP SP2
Database:
Visual FoxPro
Divers
Thread ID:
01438479
Message ID:
01438480
Vues:
60
>Hi:
>I have the following problem. I have an SQL statement something like this:
>
>cSelectStat = "select "+lcfields +;
> " FROM a "+;
> " left Join b On b.fieldpk = a.fieldfk "+;
> " left Join c On c.fieldpk = b.fieldpk "+;
> " left Join d On d.fieldpk = c.fieldpk "+;
> " left Join e On e.fieldpk = d.fieldpk "+;
> " left Join f On f.fieldid = e.fieldpk "+;
>
>&cSelectStat into cursor curtemp readwrite
>
>select curtemp
>
>And it returns me an error like this after executing the last statement: File ‘curtemp.dbf’ does not exist.
>Is this a setting in FoxPro that I’m missing or something? Are there any instances it will fail to create a cursor? From what I understand that even the records set return no records that cursor still exist.
>
>Please advise.
>
>Thanks,
>Jan

When you start with macro end with it :-)
cSelectStat = "select "+lcfields +;
              " FROM a "+;
              " left Join b On b.fieldpk = a.fieldfk "+;
              " left Join c On c.fieldpk = b.fieldpk "+;
              " left Join d On d.fieldpk = c.fieldpk "+;
              " left Join e On e.fieldpk = d.fieldpk "+;
              " left Join f On f.fieldid = e.fieldpk "+;
              " into cursor curtemp readwrite"

&cSelectStat
select curtemp
BROW NORMAL
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform