<P>Once you are done modifying your LDAP entry, call the <STRONG>update</STRONG> method
from the Mozilla::LDAP::Conn object instance:</P>
<PRE>
$conn->update($entry);</PRE>
<P>Or, if you are creating an entirely new LDAP entry, you must call the
<STRONG>add</STRONG> method:</P>
<PRE>
$conn->add($entry);</PRE>
<P>If all comes to worse, and you have to remove an entry again from the LDAP
server, just call the <STRONG>delete</STRONG> method, like</P>
<PRE>
$conn->delete($entry->getDN());</PRE>
<P>You can't use native Perl functions like <A HREF="../../../../lib/Pod/perlfunc.html#item_push"><CODE>push()</CODE></A> and <A HREF="../../../../lib/Pod/perlfunc.html#item_splice"><CODE>splice()</CODE></A> on attribute
values, since they won't update the ::Entry instance state properly.
Instead use one of the methods provided by the Mozilla::LDAP::Entry