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
https://forums.phpfreaks.com/topic/63512-solved-database-problem/
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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.