sesam_commit --
Commit pending updates to the SESAM database
Syntax
bool sesam_commit ( void )
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.
Example 1. Committing an update to the SESAM database
<?php if (sesam_connect ("mycatalog", "myschema", "otto")) { if (!sesam_execimm ("INSERT INTO mytable VALUES (*, 'Small Test', <0, 8, 15>)")) die("insert failed"); if (!sesam_commit()) die("commit failed"); } ?>
Php sesam commit Function syntax tag
sesam commit php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php sesam commit syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.