public PooledCommand(PooledConnection pooledConnection)
 {
     _dbCommand        = pooledConnection.CreateCommand();
     _pooledConnection = pooledConnection;
 }
Exemple #2
0
 public PooledCommand(PooledConnection pooledConnection)
 {
     _odbcCommand      = (OdbcCommand)pooledConnection.CreateCommand();
     _pooledConnection = pooledConnection;
 }