TableDelete

Top  Previous  Next

Prototype

 

TableDelete(intTableHandle)

 

Description

 

It deletes the current record.

 

Parameters

 

IntTableHandle: integer value, it is the table handle.

 

Returned value

 

None.

 

Notes

 

None.

 

Example

 

//It stores the table handle

OneTable:= TableOpenBDE('INVOICE','Customer','','');

 

// It executes other operations

 

//It deletes the current record

TableDelete(OneTable);

 

// It executes other operations

 

//It closes the table

TableClose(OneTable);