示例#1
0
 internal SqlCompactDataStore(IDataConnection Connection, IExecuteDatabaseCommand ExecuteCommands, ITypeInformationParser TypeInformationParser)
     : base(Connection, ExecuteCommands, TypeInformationParser)
 {
 }
示例#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;
 }
示例#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;
 }
示例#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;
 }
示例#5
0
 public AdvantageTransactionExecutor(TransactionInfo info, IExecuteDatabaseCommand storeExecutor)
     : base(info, storeExecutor)
 {
 }
示例#6
0
 internal SqlCompactDataStore(IDataConnection Connection, IExecuteDatabaseCommand ExecuteCommands)
     : base(Connection, ExecuteCommands)
 {
 }