Skip navigation.

create new entitie and store to database

I'm very new in this area and plan to use this Framework.
For the moment i'm testing it and have to following problem.
Call to undefined method Xyster_Orm::save()
I looked in the api list online and in the Orm.php but don't see a funtion that call's save.
I use the example for in the tutorial.
$orm = Xyster_Orm::getInstance();
$nick = new Tokheim();
$nick->fname = 'test';
$nick->lname = 'test';
$orm->save($nick);
$orm->commit();

Maybe you can help me further with this.

The save method has been

The save method has been changed to persist. If the documentation still lists the wrong method name, I'll make sure it gets changed.

Thanks!

-DC

User login