Have you thought about using a hash-table? ... You could actually have a couple different hash-tables, each one storing a pointer to the actual record in question on the heap, and the pointers hashed in each table according to the data you want to query. That would give you constant complexity (i.e., O(1)) for each look-up.
So for instance, you would create one record on the heap and get the pointer to that record. Then if you were interested in the date or name in the record have two hash-tables, one for date, and one for names. Apply a hash function to the record for the name, and store the pointer to that record in the appropriate table slot based on the result from the hash function. Then do the same for the date in a separate hash-table storing pointers to the original record, but hashed according to the date field. You should then get some very quick look-ups. Insertions should also be very fast as well as your hash-functions should perform in constant time as well (assuming you have a large-enough hash-table).
If you're not interested in making one yourself, you can get a hash-table in c++0x using std::unordered_map. Otherwise you can make a basic wrapping a class with insertion, etc. functions using std::vector<std::list<RECORD_TYPE*> > as the basic container (resize it to the appropriate size first before using it ... preferably to a prime number larger than the number of records you're planning on inserting).
Hope this helps,
Jason