Click or drag to resize

CDBDestruct Method

Note: This API is now obsolete.

Destructs a Database Object.

Namespace:  GeoEngine.Core.GXNetX
Assembly:  geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2025.1.0.25
Syntax
[ObsoleteAttribute("Deprecated since unknown, ")]
public void Destruct()

[ObsoleteAttribute("Deprecated since unknown, ")]
public void Destruct()
Remarks
This function is is called to destruct database handle object. This method has been superseded by the use of the EDB object, which when locked returns a DB object that must NOT be destroyed. EData = Current_EDB(); // get current edited database Data = Lock_EDB(EData); // lock the database ... (Process using the DB object Data) UnLock_EDB(EData); // unlock the database
See Also