 | CDBiGetModificationCount Method |
Gets the modification count from the database.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic int iGetModificationCount()
public int iGetModificationCount()
Public Function iGetModificationCount As Integer
Public Function iGetModificationCount As Integer
public:
int iGetModificationCount()
public:
int iGetModificationCount()
member iGetModificationCount : unit -> int
member iGetModificationCount : unit -> int
Return Value
Type:
Int32
Remarks
A running count of the times a database has been modified between commits.
Useful, for instance to be able to discard changes made by a GX on a database that are required
for the operation of the GX but which the user does not want to persist, and to avoid the Save changes
question when you go to change the database. So if the count is 0 when you start, it is safe to call
Discard_DB on exit without worrying about throwing away changes made previously.
See Also