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
Submitted by Double Compile on Sat, 01/19/2008 - 09:21
The
savemethod has been changed topersist. If the documentation still lists the wrong method name, I'll make sure it gets changed.Thanks!
-DC