CeCreateDatabaseEx2 (CEDB) (Windows CE 5.0)

Send Feedback

This function creates a new database in the object store or in a mounted database volume. Use CREATE_SYSTEMGUID to obtain the GUID of the object store.

This function does not work with EDB databases. For more information on EDB, see EDB Functions.

CEOID CeCreateDatabaseEx2( PCEGUID pguid,CEDBASEINFOEX* pInfo);

Parameters

  • pguid
    [in] Pointer to the CEGUID that contains the globally unique identifier of a mounted database.
  • pInfo
    [in] Pointer to the CEDBASEINFOEX (CEDB) structure that determines the name, type, sort orders, and characteristics of the database.

Return Values

The object identifier of the newly created database indicates success. NULL indicates failure. To get extended error information, call GetLastError. The following table lists possible values for GetLastError.

Value Description
ERROR_DISK_FULL Indicates that the destination source does not contain enough space to create the new database.
ERROR_INVALID_PARAMETER Indicates that a parameter was invalid.
ERROR_DUP_NAME Indicates that a database already exists with the specified name.

Remarks

Because sort orders increase the system resources needed to perform each insert and delete operation, you should keep the number of sort orders to a minimum. Use the CeSetDatabaseInfoEx2 (CEDB) function to change the sort order later.

A CEGUID and CEOID together uniquely identify a record or database in a database volume or in the object store.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Windbase.h.
Link Library: Coredll.lib.

See Also

CEDBASEINFOEX (CEDB) | CeDeleteDatabaseEx (CEDB) | CeOidGetInfoEx2 (CEDB) | CeOpenDatabaseEx2 | CeSetDatabaseInfoEx2 (CEDB) | CREATE_SYSTEMGUID | SORTORDERSPECEX

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.