diff --git a/docs/api.html b/docs/api.html index 6dba659..1d136f5 100644 --- a/docs/api.html +++ b/docs/api.html @@ -66,6 +66,9 @@
$db = new DB();+
Disables or enables the default autocommit mode for the current connection.
+$db->autoCommit(1);+
Begin a new transaction.
+$db->begin();+
Commits the current transaction, making its changes permanent.
+$db->commit();+
Defines the path to the configuration file.
@@ -231,6 +250,11 @@Reset all query builder's clauses.
$db->reset();
Rolls back the current transaction, canceling its changes.
+$db->rollback();+
Add a generic SELECT
clause.