?php
if
(
sesam_connect
("mycatalog"
,
"myschema"
,
"otto")
)
{
if
(sesam_execimm("INSERT
INTO
mytable
VALUES
(*
,
'Small
Test'
,
0
,
8
,
15
)"
)
sesam_execimm("INSERT
INTO
othertable
VALUES
(*
,
'Another
Test'
,
1)")
)
sesam_commit()
;
else
sesam_rollback()
;
}
?
|