sesam_commit
Commit pending updates to the SESAM database
Description
boolsesam_commit
Returns: &true; on success,
&false; on errors
sesam_commit commits any pending updates to
the database.
Note that there is no "auto-commit" feature as in other
databases, as it could lead to accidental data loss. Uncommitted
data at the end of the current script (or when calling
sesam_disconnect) will be discarded by an
implied sesam_rollback call.
See also: sesam_rollback.
Committing an update to the SESAM database
)"))
die("insert failed");
if (!sesam_commit())
die("commit failed");
}
?>
]]>