Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Response time variable
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00151325
Message ID:
00151370
Vues:
18
>Is there a variable like _tally for the response time for a query. The status bar displays the results of sql queries(i.e 'Selected 42 records in .08 seconds.'), can I access this?

Run DISPLAY MEMORY to see all of Foxes internal variables.
To get the time of a query looks like you need to do it yourself.

t1= SECONDS()
select .....
t1= SECONDS() - m.t1

wait window ltrim(str(m.t1, 12, 4))
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform