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) {
Console.Write(nl + "bad source connection string: " + e.Message);
return;
}
try {
pgc.ConnectionString = dcs;
}
catch (Exception e) {
Console.Write(nl + "bad source connection string: " + e.Message);
return;
}
try {
ibmc.Open();