1

I am trying to export my DB, but I am getting some kind of error. When I try to export, I get following result (this is example of exported data):

**VALUES
(1, 'Локална СамоŃправа', **

DB and all the fields have utf8_general_ci collation. What is going on here? Is there a way to fix this?

When I use SHOW CREATE TABLE, I get this:

CREATE TABLE `pages` (
 `id_page` int(11) NOT NULL AUTO_INCREMENT,
 `title_srb` varchar(255) NOT NULL,
 `title_eng` varchar(255) DEFAULT NULL,
 `page_srb` longtext NOT NULL,
 `page_eng` longtext,
 `slug_srb` varchar(255) NOT NULL,
 `slug_eng` varchar(255) DEFAULT NULL,
 `date_created` datetime NOT NULL,
 `date_updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
 `viewed` int(11) NOT NULL DEFAULT '0',
 PRIMARY KEY (`id_page`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8
Sasha
  • 8,521
  • 23
  • 91
  • 174

0 Answers0