Hi,

I have been experiencing some problems regarding my server.  I
recently tried reinstalling mysql and php and phpmyadmin to no
avail. 
(I use apt-get remove/install mysql mysql-server mysql-devel php
php-mysql on RedHat 8.0.  I have text mode only since it's a P166)

I seem to get a query parsing error sporadically.  I have been
using phpMyAdmin and when I try to enter the following:




#From bookmarksync.sourceforge.net
#
# Table structure for table 'syncit_bookmarks'
#

DROP TABLE IF EXISTS syncit_bookmarks;
CREATE TABLE syncit_bookmarks (
  bookid int(10) unsigned NOT NULL auto_increment,
  surl varchar(255) default NULL,
  url text,
  PRIMARY KEY  (bookid),
  UNIQUE KEY urlidx (surl)
) TYPE=MyISAM;


#
# Table structure for table 'syncit_link'
#

DROP TABLE IF EXISTS syncit_link;
CREATE TABLE syncit_link (
  link_id int(10) unsigned NOT NULL auto_increment,  # not used
  person_id int(11) NOT NULL default '0',
  book_id int(11) default NULL,
  access varchar(24) default NULL,
  path varchar(255) NOT NULL default '\\',
  expiration datetime default NULL,
  PRIMARY KEY  (person_id,path),
  UNIQUE KEY linkdx (link_id),
  FULLTEXT KEY idxpath (path)
) TYPE=MyISAM;


#
# Table structure for table 'syncit_person'
#

DROP TABLE IF EXISTS syncit_person;
CREATE TABLE syncit_person (
  personid int(10) unsigned NOT NULL auto_increment,
  name varchar(50) default NULL,
  email varchar(50) default NULL,
  pass varchar(50) default NULL,
  registered datetime default NULL,
  lastchanged datetime default NULL,
  token int(11) default '0',
  PRIMARY KEY  (personid),
  UNIQUE KEY idxemail (email)
) TYPE=MyISAM;


#
# Table structure for table 'syncit_config'
#

DROP TABLE IF EXISTS syncit_config;
CREATE TABLE syncit_config (
  param varchar(50) NOT NULL,
  value varchar(50) default NULL,
  PRIMARY KEY (param)
) TYPE=MyISAM;




I get these different errors on different tries:

You have an error in your SQL syntax near '(
  link_id int(10) unsigned NOT NULL auto_increment,  person_id
int(11) NOT NU' at line 8

You have an error in your SQL syntax near 'TABLE syncit_link (
  link_id int(10) unsigned NOT NULL auto_increment,  person' at
line 8

You have an error in your SQL syntax near 'defau_link' at line 7




It's obvious that the something seems to be garbling up the
commands as they are passed through.

What do I change/reinstall/do to fix this?

Thanks!







=====
 
Please note my MSN and Yahoo Messenger IDs are now both [EMAIL PROTECTED] 
 
See my photolog at http://www.firebreathingdragons.com





______________________________________________________________________ 
Post your free ad now! http://personals.yahoo.ca

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to