in reply to DBI/MySQL question.

I don't see anything wrong with what you're doing, and your select should work the way you expect it to. What evidence do you have that you're only getting uniquely indexed rows as results? You might try a sharper-focused retrieval method, like fetchrow_array().

Do you have RaiseError set in the dbh?

After Compline,
Zaxo

Replies are listed 'Best First'.
Re^2: DBI/MySQL question.
by Spidy (Chaplain) on Jul 21, 2005 at 04:27 UTC
    Well, the two values I'm storing in this table are indices from two other tables. If a user(the first index being stored) has more than just one of something out of the storage(second index), and I'm selecting/fetching by the user index, what should I do? I'm not sure what exactly would happen if I used the fetch method I've got above.