[Phpmyadmin-devel] split_sql_file produces sometimes wrong pieces
Marc Delisle
lem9 at users.sourceforge.net
Mon Aug 6 02:24:44 CEST 2001
Steve Alberty a écrit :
>
> Hi,
>
> db_readdump.php failes on the follow tabledump:
>
> --snip--
> CREATE TABLE Global (
> ID int(10) unsigned NOT NULL auto_increment,
> TSTAMP timestamp(14) NOT NULL,
> Keyname varchar(255) NOT NULL default '',
> Value mediumtext NOT NULL,
> Number int(10) unsigned NOT NULL default '0',
> PRIMARY KEY (ID),
> KEY Keyname (Keyname)
> ) TYPE=MyISAM COMMENT='global memory';
>
> INSERT INTO Global VALUES (209,20010731131330,'Matrix','(\'dadada\')',1);
> INSERT INTO Global VALUES (210,20010731131330,'Matrix','dadada',2);
Steve,
I don't understand. I cut&paste your example in the current cvs version
and I get correct results.
Then I dump the table and I get:
INSERT INTO Global (ID, TSTAMP, Keyname, Value, Number) VALUES
(209,20010731131330,'Matrix','(\'dadada\')',1);
INSERT INTO Global (ID, TSTAMP, Keyname, Value, Number) VALUES
(210,20010731131330,'Matrix','dadada',2);
Marc
More information about the Developers
mailing list