\n");
break;
}
printf("DB creation success
\n");
if ($bdb->transaction("BEGIN") == FALSE) {
printf("BEGIN failed
\n");
break;
}
printf("BEGIN success
\n");
if ($bdb->transaction("COMMIT") == FALSE) {
printf("COMMIT failed
\n");
break;
}
printf("COMMIT success
\n");
if ($bdb->transaction("BEgIN") != FALSE) {
printf("BEgIN missed fail
\n");
break;
}
printf("BEgIN fail correctly
\n");
} while (FALSE);
}
main();
?>