Well, that is not entirely true.
Yes you can add records with 600 people at the same time, but only if your database supports row-level-locking.
For example, MySQL 3.x only supports table-level-locking, which means that every time someone inserts a record, the entire table is locked and nobody else can do anything with it. That will be much too slow for you.
A few other things to remember:
- Does your database have enough memory to allow 600 concurrent connections?
- Does your database/application have good consistency control? Is it possible that several users enter the same data?