From 85d9cc0c5f44fa542bbddfd63de8acc6277b8194 Mon Sep 17 00:00:00 2001 From: "Michael J. Seiferling" Date: Thu, 11 Feb 2016 19:18:08 -0600 Subject: [PATCH] Fix for issue #34 --- GBM/Managers/mgrManifest.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GBM/Managers/mgrManifest.vb b/GBM/Managers/mgrManifest.vb index 3bb5610..4f8ff26 100644 --- a/GBM/Managers/mgrManifest.vb +++ b/GBM/Managers/mgrManifest.vb @@ -82,7 +82,7 @@ Dim sSQL As String Dim hshParams As New Hashtable - sSQL = "INSERT INTO manifest VALUES (@ID, @Name, @FileName, @Path, @AbsolutePath, @DateUpdated, @UpdatedBy, @CheckSum)" + sSQL = "INSERT OR REPLACE INTO manifest VALUES (@ID, @Name, @FileName, @Path, @AbsolutePath, @DateUpdated, @UpdatedBy, @CheckSum)" hshParams.Add("ID", oBackupItem.ID) hshParams.Add("Name", oBackupItem.Name)