Jump to content

Importing Sql File


arunpatal

Recommended Posts

Hi, i am trying to install shopping cart script

 

this is the sourse http://www.phpwebcommerce.com/

 

But i am facing problem while uploading sql file... (xampp)

 

when i am trying to import plaincart.sql it show me error like this

Error
SQL query:
CREATE TABLE `tbl_cart` (
`ct_id` int( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
`pd_id` int( 10 ) unsigned NOT NULL default '0',
`ct_qty` mediumint( 8 ) unsigned NOT NULL default '1',
`ct_session_id` char( 32 ) NOT NULL default '',
`ct_date` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY ( `ct_id` ) ,
KEY `pd_id` ( `pd_id` ) ,
KEY `ct_session_id` ( `ct_session_id` )
) TYPE = MYISAM AUTO_INCREMENT =58;
MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM AUTO_INCREMENT=58' at line 10

 

Have anyone have idea what i am doing wrong?

Link to comment
https://forums.phpfreaks.com/topic/271460-importing-sql-file/
Share on other sites

Wha happens when you change this line TYPE = MYISAM AUTO_INCREMENT =58; to this:

TYPE=MyISAM DEFAULT AUTO_INCREMENT=58;

 

Notice how I spelled MyISAM.

 

check the error... it is already spell like that :confused:

 

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM AUTO_INCREMENT=58' at line 10

Link to comment
https://forums.phpfreaks.com/topic/271460-importing-sql-file/#findComment-1396773
Share on other sites

The problem is that the SQL is made for an old version of MySQL, which means that the TYPE parameter have been removed and replace with the "ENGINE" parameter instead.

 

so i changed TYPE to ENGINE

now table look like this

 

DROP TABLE IF EXISTS `tbl_cart`;
CREATE TABLE `tbl_cart` (
 `ct_id` int(10) unsigned NOT NULL auto_increment,
 `pd_id` int(10) unsigned NOT NULL default '0',
 `ct_qty` mediumint( unsigned NOT NULL default '1',
 `ct_session_id` char(32) NOT NULL default '',
 `ct_date` datetime NOT NULL default '0000-00-00 00:00:00',
 PRIMARY KEY  (`ct_id`),
 KEY `pd_id` (`pd_id`),
 KEY `ct_session_id` (`ct_session_id`)
) ENGINE=MyISAM DEFAULT AUTO_INCREMENT=58;

 

but i got new error now

 

 

Error
SQL query:
CREATE TABLE `tbl_cart` (
`ct_id` int( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
`pd_id` int( 10 ) unsigned NOT NULL default '0',
`ct_qty` mediumint( 8 ) unsigned NOT NULL default '1',
`ct_session_id` char( 32 ) NOT NULL default '',
`ct_date` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY ( `ct_id` ) ,
KEY `pd_id` ( `pd_id` ) ,
KEY `ct_session_id` ( `ct_session_id` )
) ENGINE = MYISAM DEFAULT AUTO_INCREMENT =58;
MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'auto_increment=58' at line 10

 

Now what is wrong??

Link to comment
https://forums.phpfreaks.com/topic/271460-importing-sql-file/#findComment-1396787
Share on other sites

The script is too old, as mentioned before. I would recommend going with a newer software, which is capable of running on the server software you have. That way you avoid a lot of other potential headaches, many of which can be quite tricky to notice.

Link to comment
https://forums.phpfreaks.com/topic/271460-importing-sql-file/#findComment-1396793
Share on other sites

The script is too old, as mentioned before. I would recommend going with a newer software, which is capable of running on the server software you have. That way you avoid a lot of other potential headaches, many of which can be quite tricky to notice.

 

You are right...

can you suggest any good simple and free shopping cart script??

Link to comment
https://forums.phpfreaks.com/topic/271460-importing-sql-file/#findComment-1396795
Share on other sites

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.