Changeset 2606 for trunk/sources/HeuristicLab.DataAccess.ADOHelper
- Timestamp:
- 01/06/10 14:14:47 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.DataAccess.ADOHelper/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataAccess.ADOHelper/3.2/SessionFactory.cs
r2096 r2606 35 35 36 36 public Type DbConnectionType { get; set; } 37 public String DbConnectionString { get; set; } 37 private String dbConnectionString; 38 public String DbConnectionString { 39 get { 40 return dbConnectionString; 41 } 42 set { 43 this.dbConnectionString = value; 44 Console.WriteLine("connection set! "+ value); 45 } 46 } 38 47 39 48 public SessionFactory() { -
trunk/sources/HeuristicLab.DataAccess.ADOHelper/3.2/VarBinaryStream.cs
r2123 r2606 173 173 174 174 _ownedTransaction = false; 175 176 if (_transaction.IsolationLevel != IsolationLevel.RepeatableRead &&177 _transaction.IsolationLevel != IsolationLevel.Serializable) {178 throw new ArgumentException("Transaction level must be at least repeatable read");179 }180 175 } else { 181 176 _transaction = 182 177 _connection.BeginTransaction( 183 IsolationLevel.Re peatableRead)178 IsolationLevel.ReadCommitted) 184 179 as SqlTransaction; 185 180
Note: See TracChangeset
for help on using the changeset viewer.