View Single Post
  #4 (permalink)  
Old 07-24-2008, 03:38 AM
Mohiuddin_Khan_Inamdar@adobeforums.com
 
Posts: n/a
Diggs:
Default Re: Updating a timestamp with now()

hello you could simply try this..
add a new field/column to ur database row called AutoRowDate and its type as TIMESTAMP.

ALTER TABLE `MyGoodTablesNameHere`
ADD `AutoRowDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Security TimeStamp';
Reply With Quote