Click or drag to resize
DatabaseConnectionBackup Method
Performs a full backup from This to destConn.

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public static void Backup(
	this SQLiteDatabaseConnection This,
	string dbName,
	SQLiteDatabaseConnection destConn,
	string destDbName
)

Parameters

This
Type: SQLitePCL.prettySQLiteDatabaseConnection
The database connection.
dbName
Type: SystemString
The name of the database to backup.
destConn
Type: SQLitePCL.prettySQLiteDatabaseConnection
The destination database connection.
destDbName
Type: SystemString
The destination database name.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SQLiteDatabaseConnection. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also