followup to bug #665279.
If you set guid=true and change the table to be:
CREATE TABLE "Users"
(
"UserID" varchar(100) NOT NULL PRIMARY KEY,
"Username" varchar(100) NOT NULL,
"Password" varchar(100) NOT NULL,
"AccessLevel" varchar(100),
"Email" varchar(100)
)
The "new user" form that is automatically generated for struts should not include the UserID field since it
is automatically generated and the user has not input as to what it is. The "new user" form includes all
fields for this table. The view of all users Struts page also displays the UserID column; if the guid is
generated for the primary key automatically, users probably don't want to see the primary key column
(and it's a really long ugly string).
- ken