Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
// --- Get database ---
  
Edata = Current_EDB();
Data = Lock_EDB(Edata);
 
// --- Access data using the DB handle “Data”"œData" ....
.
.
.
 
// --- Release the database ---
 
UnLock_EDB(Edata);
 
// --- Call the GX ---
 
iRunGX_SYS(“AnotherGX”"œAnotherGX");
 
// --- Lock the database again, and continue ---
 
Data = Lock_EDB(Edata);

...