Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 957 Bytes

JetInit.md

File metadata and controls

50 lines (32 loc) · 957 Bytes

Home

Function name : JetInit

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


Puts the database engine into a state where it can support application use of database files.


Code examples:

Extensible Storage Engine class library

Declaration:

JET_ERR JET_API JetInit(
  __in_out_opt  JET_INSTANCE* pinstance
);  

FoxPro declaration:

DECLARE INTEGER JetInit IN esent;
	INTEGER @pinstance  

Parameters:

pinstance The instance to use for this call.


Return value:

This function returns the JET_ERR datatype with one of predefined return codes (e.g. JET_errSuccess=0).


Comments:

For Windows 2000, pinstance parameter is ignored and should always be NULL.

See also: JetTerm, JetCreateInstance