/ Returns RowId if b is false or Rownum if b is true. */ /
| 361 | /* Returns RowId if b is false or Rownum if b is true. */ |
| 362 | /***********************************************************************/ |
| 363 | int TDBMUL::RowNumber(PGLOBAL g, bool b) |
| 364 | { |
| 365 | return ((b) ? 0 : Rows) |
| 366 | + ((iFile < NumFiles) ? Tdbp->RowNumber(g, b) : 1); |
| 367 | } // end of RowNumber |
| 368 | |
| 369 | /***********************************************************************/ |
| 370 | /* MUL Access Method opening routine. */ |