CeOpenDatabase (RAPI) (Windows Embedded CE 6.0)

1/6/2010

This function opens an existing database in the object store on a remote Windows Embedded CEā€“based device.

Note

This method has been deprecated. Use CeOpenDatabaseEx instead.

Syntax

HANDLE CeOpenDatabase (
  PCEOID poid, 
  LPWSTR lpszName, 
  CEPROPID propid, 
  DWORD dwFlags, 
  HWND hwndNotify 
);

Parameters

  • poid
    [in,out] Pointer to the object identifier of the database to be opened. To open a database by name, set the value pointed to by poid to zero to receive the object identifer of the newly opened database when a database name is specified for lpszName.
  • lpszName
    [in] Pointer to the null-terminated string that contains the name of the database to be opened. This parameter is ignored if the value pointed to by poid is nonzero.
  • propid
    [in] Property identifier of the primary key for the sort order in which the database is to be traversed. All subsequent calls to CeSeekDatabase assume this sort order. This parameter can be zero if the sort order is not important.
  • dwFlags
    [in] Specifies a bitmask of action flags. It is one of the following values.

    Value Description

    CEDB_AUTOINCREMENT

    Current seek position is automatically incremented with each call to the CeReadRecordProps function.

    0 (ZERO)

    Current seek position is not incremented with each call to CeReadRecordProps.

  • hwndNotify
    [in] Not supported; set to NULL.

Return Value

The handle to the open database indicates success. INVALID_HANDLE_VALUE indicates failure. To get extended error information, call CeGetLastError and CeRapiGetError. Possible values for CeGetLastError include the following:

  • ERROR_INVALID_PARAMETER
    A parameter was invalid.
  • ERROR_FILE_NOT_FOUND
    No database exists with the specified name. This error code applies only if the value pointed to by poid was set to NULL, when the function was called.
  • ERROR_NOT_ENOUGH_MEMORY
    No memory was available to allocate a database handle.

Remarks

Use the CeCloseHandle function to close the handle returned by the CeOpenDatabase function.

Opening and closing a Windows Embedded CE database does not cause any transactions to be committed. In other words, database transactions are not committed when the database is closed, they are committed after each individual call.

Requirements

Header rapi.h
Library rapi.lib
Windows Embedded CE Windows CE 3.0 and later

See Also

Reference

RAPI Functions
CeCreateDatabase (RAPI)
CeSeekDatabase (RAPI)