aboutsummaryrefslogtreecommitdiffstats
path: root/apps/test_db/templates/index.php
blob: 3209e4d4b7b8d676c234455214f79d65bb2b35e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

$t1 = new Test();
$t1->init();
$t1->show();
$testid = OC_DB4App::store('test_db','main',OC_User::getUser(),$t1);
echo "id in db is $testid<br/>\n";

$t2 = OC_DB4App::get_object('test_db','main',$testid);
$t2->show();

print_r(OC_DB4App::get_objects('test_db','main',OC_User::getUser()));

OC_DB4App::delete_object('test_db','main',$testid);

OC_DB4App::drop('test_db','main');
?>