Click here to Skip to main content
15,906,106 members

Comments by Member 11579826 (Top 5 by date)

Member 11579826 27-May-15 12:54pm View    
Not in this case, the program that I have will not run properly unless UAC is turned off for it. I'm willing to use the ugly tricks.
Member 11579826 15-Apr-15 14:17pm View    
I'm still testing the overall project but your code suggestion helped make my project work. Thank You
Member 11579826 14-Apr-15 20:34pm View    
Ok Garth,

What I have is:

OleDataAdapter installedDBAdapter = new OleDataAdapter("",installedDBConnection);
OleDataAdapter baselineDBAdapter = new OleDataAdapter("",installedDBConnection);

//Open up a connection to the databases
code for opening connection

DataSet installedDS = new DataSet();
DataSet baselineDS = new DataSet();

installedDBAdpter.Fill(installedDS, "InstalledConfigItem");
baselineDBAdapter.Fill(baselineDS, "BaselineConfigItem");

DataColumn[] installedConfigItemFirstColumn = new DataColumn[installedDS.Tables[0].Rows.Count];

DataColumn[] baselineConfigItem = new DataColumn[baselineDS.Tables[0].Rows.Count];

I want to compare columns 1 and 3 of installedDS to columns 1 and 3 of baselineDS.

Hopefully this clarifies things.
Member 11579826 6-Apr-15 11:44am View    
I can't do a comparison based off the file sizes. The comparison must be based off the contents in each database.
Member 11579826 6-Apr-15 11:41am View    
When I build a desktop application based off the your suggestions, will the applications remember the schemas that were set?