You are here: Configuration > File Configuration > Generate Commit Timestamps

Generate Commit Timestamps

db4o can store transaction timestamps. Those timestamps to compare and check if an objects has been changed. These commit timestamps are mainly used for replication together with UUIDs.

IEmbeddedConfiguration configuration = Db4oEmbedded.NewConfiguration();
configuration.File.GenerateCommitTimestamps = true;
FileConfiguration.cs: Enable db4o commit timestamps
Dim configuration As IEmbeddedConfiguration = Db4oEmbedded.NewConfiguration()
configuration.File.GenerateCommitTimestamps = True
FileConfiguration.vb: Enable db4o commit timestamps