FrmBaseDatos: btnExportData Exports the data of the selected tables.

This commit is contained in:
2017-01-27 13:37:25 +01:00
parent b1b74fc450
commit 0e9d204a8a
3 changed files with 101 additions and 10 deletions

View File

@@ -108,7 +108,7 @@ namespace ServerExplorer.Code
}
// Insertar fila a la datatable destino
listCmds.Add(String.Format("INSERT INTO {0} ({1}) VALUES ({2})",
listCmds.Add(String.Format("INSERT INTO {0} ({1}) VALUES ({2});",
destTable, sbColumns.ToString(), sbValues.ToString()));
}