* add insertMany() and replaceMany() to let you do multiple inserts in one SQL command

* error and success handlers can now be set to static and object methods
This commit is contained in:
Sergey Tsalkov
2011-04-23 00:46:51 -04:00
parent 964a36e4c2
commit 8c5299c2e2
3 changed files with 101 additions and 19 deletions

View File

@@ -48,7 +48,7 @@ foreach ($classes_to_test as $class) {
$object = new $class();
foreach (get_class_methods($object) as $method) {
if (substr($method, 0, 2) == '__') continue;
if (substr($method, 0, 4) != 'test') continue;
echo "Running $class::$method..\n";
$object->$method();
}