Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.09 KB

JetDeleteTable.md

File metadata and controls

59 lines (39 loc) · 1.09 KB

Home

Function name : JetDeleteTable

Group: Extensible Storage Engine (ESE, Jet Blue) - Library: esent


Deletes a table in an ESE database.


Code examples:

Extensible Storage Engine class library

Declaration:

JET_ERR JET_API JetDeleteTable(
  __in          JET_SESID sesid,
  __in          JET_DBID dbid,
  __in          const tchar* szTableName
);  

FoxPro declaration:

DECLARE INTEGER JetDeleteTable IN esent;
	INTEGER sesid,;
	INTEGER dbid,;
	STRING szTableName  

Parameters:

sesid The database session context to use for the API call.

dbid The database identifier to use for the API call.

szTableName The name of the table to delete.


Return value:

Returns the JET_ERR datatype with a predefined return code.


Comments:

See also: JetCloseTable.