Contents Index Drop method Open method pdf/preface.pdf

UltraLite User's Guide
  C++ API Reference
    ULData class

IsOpen method


Prototype 

bool  IsOpen ( )

Description 

Checks whether the ULData object is currently open.

Returns 

true (1) if the ULData object is open.

false (0) if the ULData object is not open.

Example 

The following example declares a ULData object, opens it, and checks that the Open method succeeded:

ULData db;
db.Open();
if( db.IsOpen() ){
   printf( "The ULData object is open\n" );
}
See also 

Open method


Contents Index Drop method Open method pdf/preface.pdf