TxnTimestamp Property

BerkeleyDB

Recover to the time specified by timestamp rather than to the most current possible date.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet48 (in libdb_dotnet48.dll) Version: 4.8.24.0

Syntax

C#
public DateTime TxnTimestamp { get; set; }
Visual Basic (Declaration)
Public Property TxnTimestamp As DateTime
Visual C++
public:
property DateTime TxnTimestamp {
	DateTime get ();
	void set (DateTime value);
}

Remarks

Once a database environment has been upgraded to a new version of Berkeley DB involving a log format change (see Upgrading Berkeley DB installations in the Programmer's Reference Guide), it is no longer possible to recover to a specific time before that upgrade.

See Also