Jump to content

[SOLVED] Database problem!!!


rameshfaj

Recommended Posts

I have the database described in mysql.

In one of the tables,if i insert new item or update entry of some item then everyone in the table are affected.Is there any case that can make this.

 

CREATE TABLE `item` (

  `id` bigint(20) NOT NULL auto_increment,

  `name` varchar(255) NOT NULL default '',

  `description` varchar(255) default NULL,

  `price` float default NULL,

  `categoryid` bigint(20) default NULL,

  `picture` varchar(255) default NULL,

  `date` date NOT NULL default '0000-00-00',

  `ccid` varchar(255) default NULL,

  `contact` varchar(255) default NULL,

  `status` enum('Available','Requested','Sold') default 'Available',

  PRIMARY KEY  (`id`),

  KEY `description_2` (`description`),

  ) TYPE=MyISAM AUTO_INCREMENT=16 ;

 

All this code is generated by the PHPMyAdmin of easyphp 1-7.

Any suggestions are welcome!!!

 

Link to comment
Share on other sites

  • 5 months later...

I meant to say that when info about one item is updated or new entry is entered in the table, then the info about already existing item is also changed. For what reason this incident is happening to the table? I am unable to identify. Can there be any such case or is this the problem of the database server?Plz inform me.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.