/// <summary>
 /// Makes all changes made since the previous commit/rollback permanent and releases any database locks currently held by this <see cref="NPhoenixConnection"/> object.
 /// This method should be used only when auto-commit mode has been disabled.
 /// </summary>
 public void Commit()
 {
     _connection.Commit();
 }