Forgot the primary key file. Could the fact that the field being
changed is part of the primary key have anything to do with it?
There are no errors coming back at all.
// File MailAccountPK.java
// Primary Key
package com.nfolink;
public class MailAccountPK implements java.io.Serializable {
public String username;
public String domain;
public MailAccountPK(String username, String domain) {
this.username = username;
this.domain = domain;
}
public MailAccountPK() {
}
public String toString(){
return username+"@"+domain;
}
public boolean equals(Object o) {
return o.toString().equals(this.toString());
}
}
==========================================================================
Timothy Stewart, Lead Developer (Programmer Level IV)
Laureate Inc.
Tel: 512.257.7531 Email: [EMAIL PROTECTED]
Corporate Web page: http://www.laureate.net/
Laureate Inc. specializes in development of distributed evaluation and
assessment systems for educational, governmental, corporate and military
environments.
Our primary focus is the creation of customized, reliable, cross-platform
applications that maintain ease of use and integrate seemlessly into the
instutional enterprise system; we strive in every aspect to avoid the
need to have the institution conform to our software. Rather, our
software conforms to user expectations. Installation is made simple
with the provision of a pre-configured Sun Server and Oracle Database.
For more information, contact [EMAIL PROTECTED]
==========================================================================
----
To unsubscribe, send email to [EMAIL PROTECTED] and
include in the body of the message "unsubscribe jonas-users".
For general help, send email to [EMAIL PROTECTED] and
include in the body of the message "help".