public void select(int dbIndex) {
   try {
     if (isPipelined()) {
       pipeline(pipeline.select(dbIndex));
     }
     client.select(dbIndex);
   } catch (Exception ex) {
     throw convertSrpAccessException(ex);
   }
 }