1
Fork 0

removed dev comment

This commit is contained in:
Jake Howard 2015-01-11 14:49:27 +00:00
parent ca051dc740
commit ba9c2f8f36
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ namespace Saviour_Backup_System
DataTable table = new DataTable();
conn.Open();
cmd.CommandText =
"SELECT Recordset.Name as Backup_Name, Recordset.Creation_Date, Recordset.Backup_Location, Drive.Name, Drive.Capacity FROM Recordset, Drive"; //write this out in compactview frst;
"SELECT Recordset.Name as Backup_Name, Recordset.Creation_Date, Recordset.Backup_Location, Drive.Name, Drive.Capacity FROM Recordset, Drive";
using (SqlCeDataAdapter adapter = new SqlCeDataAdapter(cmd.CommandText, conn)) {
adapter.Fill(table);
conn.Close();