forgot the returns

This commit is contained in:
Paul Trowbridge 2018-09-20 11:56:04 -04:00
parent 0cfdfce746
commit de60ab5581

View File

@ -102,12 +102,14 @@ namespace test
} }
catch (Exception e) { catch (Exception e) {
Console.Write(nl + "bad source connection string: " + e.Message); Console.Write(nl + "bad source connection string: " + e.Message);
return;
} }
try { try {
pgc.ConnectionString = dcs; pgc.ConnectionString = dcs;
} }
catch (Exception e) { catch (Exception e) {
Console.Write(nl + "bad source connection string: " + e.Message); Console.Write(nl + "bad source connection string: " + e.Message);
return;
} }
try { try {
ibmc.Open(); ibmc.Open();