db4o

ExtObjectContainer.backup Method 

backs up a database file of an open ObjectContainer.

[Visual Basic]
Sub backup( _ 
   ByVal path As String _ 
)
[C#]
void backup(
   string path
);
[C++]
void backup(
   String* path
);
[JScript]
function backup(
   String path
);

Parameters

path
a fully qualified path

Remarks

backs up a database file of an open ObjectContainer.

While the backup is running, the ObjectContainer can continue to be used. Changes that are made while the backup is in progress, will be applied to the open ObjectContainer and to the backup.

While the backup is running, the ObjectContainer should not be closed.

If a file already exists at the specified path, it will be overwritten.

See Also

ExtObjectContainer Interface | com.db4o.ext Namespace