My recent study of Damian Conway's "Object Oriented Perl" has proven useful for a current project I am working on. I am dealing with a database of just over 300k records (account information for a high volume site) which I have to constantly query with select statements looking for repeats on account creation etc. It would appear from my novice experience that a better way to structure the data is in an object manner and maintain persistent objects for the current information. All documentation I have read recommend using the Data::Dumper and pushing the data to a Db using the Persistence::Object::Postgres module. I would like to keep the current DB structure and not serialize the data as other non-perl applications will read from this. Is it possible to push the oid to the DB and somehow parse the varables to insert them into seperate colums? Anyone have any recommendation on sources of information for this? Any help would be greatly appreciated. Thanks.