- Timestamp:
- 08/12/15 16:37:47 (9 years ago)
- Location:
- branches/HiveStatistics/sources/HeuristicLab.Services.Hive.DataAccess/3.3
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources/HeuristicLab.Services.Hive.DataAccess/3.3/HeuristicLab.Services.Hive.DataAccess-3.3.csproj
r12761 r12853 133 133 <Compile Include="Enums\CpuArchitecture.cs" /> 134 134 <Compile Include="Interfaces\IPersistenceManager.cs" /> 135 <Compile Include="Interfaces\ITransactionManager.cs" /> 135 136 <Compile Include="Manager\PersistenceManager.cs" /> 137 <Compile Include="Manager\TransactionManager.cs" /> 136 138 <Compile Include="Plugin.cs" /> 137 139 <Compile Include="HiveDataContext.cs"> … … 143 145 <DependentUpon>HiveDataContext.dbml</DependentUpon> 144 146 </Compile> 145 <Compile Include="Interfaces\ITransactionManager.cs" />146 147 <Compile Include="Enums\TaskState.cs" /> 147 148 <Compile Include="Logger.cs" /> … … 155 156 </Compile> 156 157 <Compile Include="Enums\SlaveState.cs" /> 157 <Compile Include="Manager\TransactionManager.cs" />158 158 </ItemGroup> 159 159 <ItemGroup> … … 182 182 <ItemGroup> 183 183 <Content Include="SQL Scripts\Initialize Hive Database.sql" /> 184 <Content Include="SQL Scripts\Migrate to Filestream.sql" />185 184 <Content Include="SQL Scripts\Prepare Hive Database.sql" /> 186 185 </ItemGroup> -
branches/HiveStatistics/sources/HeuristicLab.Services.Hive.DataAccess/3.3/Manager/PersistenceManager.cs
r12761 r12853 202 202 #endregion 203 203 204 // str.Remove(str.IndexOf(','));205 204 public TableInformation GetTableInformation(string table) { 206 205 string query = string.Format("sp_spaceused '{0}', @updateusage='true'", table); … … 224 223 225 224 public void Dispose() { 226 //if (dataContext != null) {227 //dataContext.Dispose();228 //}225 if (dataContext != null) { 226 dataContext.Dispose(); 227 } 229 228 } 230 229
Note: See TracChangeset
for help on using the changeset viewer.