-
Configuring phpMyAdmin?
Hi,
I'm using phpMyAdmin on my localhost to dump a database to a text file. When the file dumps it creates tables like so :
CREATE TABLE homepage (
id int(11) NOT NULL auto_increment,
`data` text,
PRIMARY KEY (id)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
When I try to import using phpMyAdmin on a remote server this line gives generates an error every time :
ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
Question is how do I configure phpMyAdmin to not generate this line when exporting on the localhost to a file?
-
On the Export page, uncheck the Structure option.
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks