-- MySQL dump 8.21
--
-- Host: localhost Database: phptodo
------------------------------------------------------- --
-- Server version 3.23.49
--
-- Table structure for table 'todo'
--
CREATE TABLE todo(
todo_id int( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
todo_short varchar( 255 ) NOT NULL default '',
todo_long text NOT NULL ,
todo_priority tinyint( 4 ) NOT NULL default '0',
PRIMARY KEY ( todo_id )
) TYPE = MYISAM
MySQL said:
#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 '---------------------------------------------------------
-- Se
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Error
SQL-query:
-- MySQL dump 8.21
--
-- Host: localhost Database: phptodo
------------------------------------------------------- --
-- Server version 3.23.49
--
-- Table structure for table 'todo'
--
CREATE TABLE todo(
todo_id int( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
todo_short varchar( 255 ) NOT NULL default '',
todo_long text NOT NULL ,
todo_priority tinyint( 4 ) NOT NULL default '0',
PRIMARY KEY ( todo_id )
) TYPE = MYISAM
MySQL said:
#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 '---------------------------------------------------------
-- Se
What version of MySQL are you using?
You might want to try removing the -- comment lines from the dump, and run it again.