Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 1.09 KB

JetCloseTable.md

File metadata and controls

54 lines (35 loc) · 1.09 KB

Home

Function name : JetCloseTable

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


Closes an open table in a database. The table is a temporary table or a normal table.


Code examples:

Extensible Storage Engine class library

Declaration:

JET_ERR JET_API JetCloseTable(
  __in          JET_SESID sesid,
  __in          JET_TABLEID tableid
);  

FoxPro declaration:

DECLARE INTEGER JetCloseTable IN esent;
	INTEGER sesid,;
	INTEGER tableid  

Parameters:

sesid Identifies the database session context that will be used for the API call.

tableid Identifies the table to be closed.


Return value:

Returns the JET_ERR datatype with a predefined return code.


Comments:

See also: JetCreateTable, JetOpenTable.