Jump to content

Red Squirrel

Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Red Squirrel's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Really? But why does it work at the college, is it because we're using php/mysql on windows?
  2. I'm trying to restore a dump from phpmyadmin and this table is giving me issues. why wont this work? [code] mysql> CREATE TABLE catalog (     ->   prod_id bigint(20) NOT NULL default '0',     ->   name varchar(255) NOT NULL default '',     ->   price bigint(20) NOT NULL default '0',     ->   short_desc text NOT NULL,     ->   desc text NOT NULL,     ->   picture varchar(128) NOT NULL default '',     ->   inventory bigint(20) NOT NULL default '0',     ->   shipping bigint(20) NOT NULL default '0',     ->   PRIMARY KEY  (prod_id),     ->   KEY prod_id (prod_id)     -> ) TYPE=MyISAM; ERROR 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 'desc text NOT NULL,   picture varchar(128) NOT NULL default '', mysql> [/code]
×
×
  • 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.