Use a standard record-based data store on a device operating the Palm Computing Platform.
Deprecated functionThis function is not required in UltraLite beginning with version 10. The file name determines the location of the data store on a device operating under Palm OS. |
void ULEnablePalmRecordDB( SQLCA * sqlca );
sqlca A pointer to the SQLCA. This argument is supplied even in C++ Component and C++ API applications.
In the C++ Component use the Sqlca.GetCA method.
The following embedded SQL code illustrates the use of ULEnablePalmRecordDB.
db_init( & sqlca ); ULEnablePalmRecordDB( &sqlca ); // connection code here if( SQLCODE == SQLE_CONNECTION_RESTORED ){ // connection was restored // cursor is already open } else { // open cursor }