
 Evgeny Kalashinkov - 2008-01-07 01:12:37
 
// FYI: We can also shortcut and specify the "where" array in the call...
if (! $db->UpdateRow("test", $values, array("TestID" => 1))) $db->Kill();
this line should be 
if (! $db->UpdateRows("test", $values, array("TestID" => 1))) $db->Kill();
because there is not UpdateRow method
I also got some more problems with this example file.
Otherwise, the class is great, i've been using it for a half a year now. Thank you for the work! =)