Changeset 2181
- Timestamp:
- 07/24/09 14:29:46 (15 years ago)
- Location:
- branches/HeuristicLab.Modeling Database Backend/sources
- Files:
-
- 1 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.SQLiteBackend/3.2/Algorithm.cs
r2179 r2181 26 26 public int Id { 27 27 get { return this.id; } 28 privateset { this.id = value; }28 set { this.id = value; } 29 29 } 30 30 -
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.SQLiteBackend/3.2/HeuristicLab.Modeling.SQLiteBackend-3.2.csproj
r2179 r2181 66 66 </PropertyGroup> 67 67 <ItemGroup> 68 <Reference Include="DbLinq, Version=0.19.0.0, Culture=neutral, PublicKeyToken=61e015a67077348b, processorArchitecture=MSIL"> 69 <SpecificVersion>False</SpecificVersion> 70 <HintPath>..\..\..\..\..\..\dblinq2007\build.dbg\DbLinq.dll</HintPath> 71 </Reference> 72 <Reference Include="DbLinq.Sqlite, Version=0.19.0.0, Culture=neutral, PublicKeyToken=61e015a67077348b, processorArchitecture=MSIL"> 73 <SpecificVersion>False</SpecificVersion> 74 <HintPath>..\..\..\..\..\..\dblinq2007\build.dbg\DbLinq.Sqlite.dll</HintPath> 75 </Reference> 68 76 <Reference Include="System" /> 69 77 <Reference Include="System.Core"> … … 105 113 </ItemGroup> 106 114 <ItemGroup> 107 <Compile Include="Algorithm.cs" />108 <Compile Include="InputVariable.cs" />109 <Compile Include="InputVariableResult.cs" />110 <Compile Include="Model.cs" />111 <Compile Include="ModelingDataContext.cs" />112 <Compile Include="ModelResult.cs" />113 <Compile Include="Problem.cs" />114 115 <Compile Include="Properties\AssemblyInfo.cs" /> 115 <Compile Include="Result.cs" /> 116 <Compile Include="Variable.cs" /> 116 <Compile Include="SQLiteMapping_generated.cs" /> 117 117 </ItemGroup> 118 118 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.SQLiteBackend/3.2/Model.cs
r2179 r2181 25 25 public int Id { 26 26 get { return this.id; } 27 privateset { this.id = value; }27 set { this.id = value; } 28 28 } 29 29 -
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.SQLiteBackend/3.2/ModelingDataContext.cs
r2179 r2181 1 1 using System; 2 2 using System.Collections.Generic; 3 using System.Data.Linq; 3 4 4 using System.Data.Linq.Mapping; 5 using System.Data.Sql; 6 using System.Text; 5 using DbLinq.Data.Linq; 6 using DbLinq.Sqlite; 7 using System.Text; 8 using System.Data.SQLite; 7 9 8 10 namespace HeuristicLab.Modeling.SQLiteBackend { 9 public class ModelingDataContext : DataContext{11 public class ModelingDataContext : SqliteDataContext { 10 12 11 13 public static string connectionString; … … 15 17 16 18 public ModelingDataContext(string connection) 17 : base( connection) {19 : base(new SQLiteConnection(connection)) { 18 20 } 19 21 -
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.SQLiteBackend/3.2/Problem.cs
r2179 r2181 22 22 public int Id { 23 23 get { return this.id; } 24 privateset { this.id = value; }24 set { this.id = value; } 25 25 } 26 26 -
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.SQLiteBackend/3.2/Result.cs
r2179 r2181 21 21 public int Id { 22 22 get { return this.id; } 23 privateset { this.id = value; }23 set { this.id = value; } 24 24 } 25 25 -
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.SQLiteBackend/3.2/Variable.cs
r2179 r2181 21 21 public int Id { 22 22 get { return this.id; } 23 privateset { this.id = value; }23 set { this.id = value; } 24 24 } 25 25 -
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.sln
r2175 r2181 237 237 EndProject 238 238 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Modeling.SQLiteBackend-3.2", "HeuristicLab.Modeling.SQLiteBackend\3.2\HeuristicLab.Modeling.SQLiteBackend-3.2.csproj", "{2F4ADF67-B9DA-4E0D-A217-DF1CA8AD58CC}" 239 EndProject 240 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Modeling.SQLServerCompactBackend-3.2", "HeuristicLab.Modeling.SQLServerCompactBackend\3.2\HeuristicLab.Modeling.SQLServerCompactBackend-3.2.csproj", "{9B4F7D05-CCE1-45BB-81D1-5D4925851901}" 239 241 EndProject 240 242 Global … … 3795 3797 {2F4ADF67-B9DA-4E0D-A217-DF1CA8AD58CC}.Visualization Debug|x64.ActiveCfg = Debug|Any CPU 3796 3798 {2F4ADF67-B9DA-4E0D-A217-DF1CA8AD58CC}.Visualization Debug|x86.ActiveCfg = Debug|Any CPU 3799 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.CEDMA Debug|Any CPU.ActiveCfg = Debug|Any CPU 3800 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.CEDMA Debug|Any CPU.Build.0 = Debug|Any CPU 3801 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.CEDMA Debug|x64.ActiveCfg = Debug|x64 3802 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.CEDMA Debug|x64.Build.0 = Debug|x64 3803 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.CEDMA Debug|x86.ActiveCfg = Debug|x86 3804 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.CEDMA Debug|x86.Build.0 = Debug|x86 3805 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 3806 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Debug|Any CPU.Build.0 = Debug|Any CPU 3807 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Debug|x64.ActiveCfg = Debug|x64 3808 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Debug|x64.Build.0 = Debug|x64 3809 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Debug|x86.ActiveCfg = Debug|x86 3810 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Debug|x86.Build.0 = Debug|x86 3811 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Modeling Debug|Any CPU.ActiveCfg = Debug|Any CPU 3812 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Modeling Debug|Any CPU.Build.0 = Debug|Any CPU 3813 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Modeling Debug|x64.ActiveCfg = Debug|x64 3814 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Modeling Debug|x64.Build.0 = Debug|x64 3815 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Modeling Debug|x86.ActiveCfg = Debug|x86 3816 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Modeling Debug|x86.Build.0 = Debug|x86 3817 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Release|Any CPU.ActiveCfg = Release|Any CPU 3818 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Release|Any CPU.Build.0 = Release|Any CPU 3819 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Release|x64.ActiveCfg = Release|x64 3820 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Release|x64.Build.0 = Release|x64 3821 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Release|x86.ActiveCfg = Release|x86 3822 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Release|x86.Build.0 = Release|x86 3823 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.v3.2 Debug|Any CPU.ActiveCfg = Debug|Any CPU 3824 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.v3.2 Debug|Any CPU.Build.0 = Debug|Any CPU 3825 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.v3.2 Debug|x64.ActiveCfg = Debug|x64 3826 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.v3.2 Debug|x64.Build.0 = Debug|x64 3827 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.v3.2 Debug|x86.ActiveCfg = Debug|x86 3828 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.v3.2 Debug|x86.Build.0 = Debug|x86 3829 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Visualization Debug|Any CPU.ActiveCfg = Debug|Any CPU 3830 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Visualization Debug|Any CPU.Build.0 = Debug|Any CPU 3831 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Visualization Debug|x64.ActiveCfg = Debug|x64 3832 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Visualization Debug|x64.Build.0 = Debug|x64 3833 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Visualization Debug|x86.ActiveCfg = Debug|x86 3834 {9B4F7D05-CCE1-45BB-81D1-5D4925851901}.Visualization Debug|x86.Build.0 = Debug|x86 3797 3835 EndGlobalSection 3798 3836 GlobalSection(SolutionProperties) = preSolution … … 3882 3920 {B9A64475-D542-47CF-9688-735F6224F055} = {410732DB-725A-4824-896B-C298978343C0} 3883 3921 {2F4ADF67-B9DA-4E0D-A217-DF1CA8AD58CC} = {410732DB-725A-4824-896B-C298978343C0} 3922 {9B4F7D05-CCE1-45BB-81D1-5D4925851901} = {410732DB-725A-4824-896B-C298978343C0} 3884 3923 {A9E282EA-180F-4233-B809-AEDF0787545C} = {78982D7C-D63D-4A3D-AE1F-F58AC007603B} 3885 3924 {BF7D9494-A586-457B-8DF9-ED599F9E6A71} = {78982D7C-D63D-4A3D-AE1F-F58AC007603B}
Note: See TracChangeset
for help on using the changeset viewer.