Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Parsing parameters to an stored procedure
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00714045
Message ID:
00714209
Vues:
22
This message has been marked as the solution to the initial question of the thread.
I will try to answer by example:

func CustUpdTrig && Customer table update trigger
local lcNewName
lcNewName= customer.Name
...
Write2Log( 'Customer', oldval('Name'), lcNewName, datetime() )
...

func Write2Log
para cTablName, cOldVal, cNewVal, dTimeStmp
...
insert into LogTabl ( table, old, new, ts) ;
value ( cTablName, cOldVal, cNewVal, dTimeStmp)
...

Put those two functions in your database stored procedure
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform