Esempio n. 1
0
 internal SqlCompactDataStore(IDataConnection Connection, IExecuteDatabaseCommand ExecuteCommands, ITypeInformationParser TypeInformationParser)
     : base(Connection, ExecuteCommands, TypeInformationParser)
 {
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DataStore"/> class.
 /// </summary>
 /// <param name="Connection">The data connection.</param>
 /// <param name="ExecuteComamands">The command executor.</param>
 /// <param name="TypeParser">The type parser.</param>
 public DataStore(IDataConnection Connection, IExecuteDatabaseCommand ExecuteComamands)
     : this(Connection)
 {
     this.ExecuteCommands = ExecuteComamands;
 }
Esempio n. 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DataStore"/> class.
 /// </summary>
 /// <param name="Connection">The data connection.</param>
 /// <param name="ExecuteComamands">The command executor.</param>
 /// <param name="TypeParser">The type parser.</param>
 public DataStore(IDataConnection Connection, IExecuteDatabaseCommand ExecuteComamands, ITypeInformationParser TypeParser)
     : this(Connection)
 {
     this.ExecuteCommands       = ExecuteComamands;
     this.TypeInformationParser = TypeParser;
 }
Esempio n. 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TransactionCommandExecutor" /> class.
 /// </summary>
 /// <param name="info">The transacation info.</param>
 /// <param name="storeExecutor">The executor used by the data store</param>
 public TransactionCommandExecutor(TransactionInfo info, IExecuteDatabaseCommand storeExecutor)
     : base()
 {
     _info = info;
     _base = storeExecutor;
 }
Esempio n. 5
0
 public AdvantageTransactionExecutor(TransactionInfo info, IExecuteDatabaseCommand storeExecutor)
     : base(info, storeExecutor)
 {
 }
Esempio n. 6
0
 internal SqlCompactDataStore(IDataConnection Connection, IExecuteDatabaseCommand ExecuteCommands)
     : base(Connection, ExecuteCommands)
 {
 }