Changeset 2181 for branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.SQLiteBackend
- Timestamp:
- 07/24/09 14:29:46 (15 years ago)
- Location:
- branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.SQLiteBackend/3.2
- Files:
-
- 1 added
- 7 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
Note: See TracChangeset
for help on using the changeset viewer.