|
sentinel -> RE: MYSQL UPDATE Not WOrking (10/6/2005 14:52:17)
|
EventID is the column in the database that is autonumbered by mysql.. Here is the Table definition --
-- Table structure for table `hcstaff`.`events`
--
DROP TABLE IF EXISTS `events`;
CREATE TABLE `events` (
`EventID` int(10) unsigned NOT NULL auto_increment,
`UserName` text NOT NULL,
`Status` text NOT NULL,
`System` text NOT NULL,
`Description` text NOT NULL,
`ApprovedBy` text,
`DateEntered` date default '0000-00-00',
`Expiration` datetime default '0000-00-00 00:00:00',
`Approved` text NOT NULL,
PRIMARY KEY (`EventID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
|
|