예제 #1
0
 /** Initializes a new instance of the SQLRelayCommand class with the
  *  text of the query, a SQLRelayConnection, and the
  *  SQLRelayTransaction. */
 public SQLRelayCommand(String commandtext, SQLRelayConnection sqlrelaycon, SQLRelayTransaction sqlrelaytran)
 {
     _commandtext  = commandtext;
     _sqlrelaycon  = sqlrelaycon;
     _sqlrelaytran = sqlrelaytran;
 }
예제 #2
0
 /** Initializes a new instance of the SQLRelayCommand class with the
  *  text of the query and a SQLRelayConnection */
 public SQLRelayCommand(String commandtext, SQLRelayConnection sqlrelaycon)
 {
     _commandtext = commandtext;
     _sqlrelaycon = sqlrelaycon;
 }