vote up 0 vote down star

Hi, I'm trying to migrate one of my PHP projects to Doctrine. I've never used it before so there are a few things I don't understand. In my current code, I have a class similar to this:

class ScheduleItem {
   private Date start; //A PEAR Date object.
   private Date end;

   public function getStart() { return $this->start; }
   public function setStart($val) { $this->start = $val; }

   public function getEnd() { return $this->end; }
   public function setEnd($val) { $this->end= $val; }
}

I have a ScheduleItemDAO class with methods like save(), getByID(), etc. When loading from and saving to the database, the DAO class converts the Date objects to and from strings so they can be stored in a timestamp field.

In my attempt to move to Doctrine, I created a new class like this:

class ScheduleItem extends Doctrine_Record {
   public function setTableDefinition() {
      $this->hasColumn('start', 'timestamp');
      $this->hasColumn('end', 'timestamp');
   }
}

I had hoped I would be able to use Date objects for the start and end times, and have them converted to strings when they are saved to the database. How can I accomplish this?

flag

67% accept rate

1 Answer

vote up 0 vote down

You should be defining your schema using a yaml file. Using the yaml file, you can generate your classes using the Doctrine command line interface. You can also use the CLI to generate SQL for the DB, and create the DB and the tables.

Doctrine should take care of converting your date to something that's ok for your DB and back again when you load your object.

Hope this helps.

link|flag
Maybe Doctrine is the wrong tool for the job then. My only other experience with an ORM is hibernate and I was seeking something similar for this project. Basically, I want PHP object corresponding to records in the database, but I also want the ability to add my own methods to these objects. Generating my classes from yaml doesn't allow me to do this. I don't really see how a Doctrine_Record object is any better than an associative array if it doesn't allow me to also define actions on the object. – takteek Nov 8 at 18:37
You'll still have the ability to add custom code to each object. Basically, Doctrine will create "Base" classes for you. So if you have a User object defined in your yaml file, Doctrine creates: <where ever you specify your models go>/generated/BaseUser.php and <where ever you specify your models go>/User.php. User extends BaseUser. You're free to add to User.php and BaseUser.php will be the only thing changed if/when you change User in your yaml file. – Chris Williams Nov 9 at 15:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.